diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-07-17 00:15:34 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2006-07-17 00:15:34 +0000 |
commit | a234780aab8b2d693502e03165f658f96c956969 (patch) | |
tree | f8c9a6d72a4478f6c8a769e797483dfb0ce88f2e /src/audio.c | |
parent | 0c24fc0cb33dd6482670a54ed80c7dc67ebc929c (diff) | |
download | mpd-a234780aab8b2d693502e03165f658f96c956969.tar.gz mpd-a234780aab8b2d693502e03165f658f96c956969.tar.xz mpd-a234780aab8b2d693502e03165f658f96c956969.zip |
sparse: ANSI-fy function declarations
These are just warnings from sparse, but it makes the output
easier to read. I ran this through a quick perl script, but
of course verified the output by looking at the diff and making
sure the thing still compiles.
here's the quick perl script I wrote to generate this patch:
----------- 8< -----------
use Tie::File;
defined(my $pid = open my $fh, '-|') or die $!;
if (!$pid) {
open STDERR, '>&STDOUT' or die $!;
exec 'sparse', @ARGV or die $!;
}
my $na = 'warning: non-ANSI function declaration of function';
while (<$fh>) {
print STDERR $_;
if (/^(.+?\.[ch]):(\d+):(\d+): $na '(\w+)'/o) {
my ($f, $l, $pos, $func) = ($1, $2, $3, $4);
$l--;
tie my @x, 'Tie::File', $f or die "$!: $f";
print '-', $x[$l], "\n";
$x[$l] =~ s/\b($func\s*)\(\s*\)/$1(void)/;
print '+', $x[$l], "\n";
untie @x;
}
}
git-svn-id: https://svn.musicpd.org/mpd/trunk@4378 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/audio.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/audio.c b/src/audio.c index 8180b290b..4d4889b6c 100644 --- a/src/audio.c +++ b/src/audio.c @@ -80,7 +80,7 @@ extern AudioOutputPlugin mvpPlugin; extern AudioOutputPlugin shoutPlugin; -void loadAudioDrivers() { +void loadAudioDrivers(void) { initAudioOutputPlugins(); loadAudioOutputPlugin(&alsaPlugin); loadAudioOutputPlugin(&aoPlugin); @@ -92,7 +92,7 @@ void loadAudioDrivers() { } /* make sure initPlayerData is called before this function!! */ -void initAudioDriver() { +void initAudioDriver(void) { ConfigParam * param = NULL; int i; @@ -152,7 +152,7 @@ void getOutputAudioFormat(AudioFormat * inAudioFormat, else copyAudioFormat(outAudioFormat,inAudioFormat); } -void initAudioConfig() { +void initAudioConfig(void) { ConfigParam * param = getConfigParam(CONF_AUDIO_OUTPUT_FORMAT); if(NULL == param || NULL == param->value) return; @@ -232,11 +232,11 @@ int parseAudioConfig(AudioFormat * audioFormat, char * conf) { return 0; } -void finishAudioConfig() { +void finishAudioConfig(void) { if(audio_configFormat) free(audio_configFormat); } -void finishAudioDriver() { +void finishAudioDriver(void) { int i; for(i = 0; i < audioOutputArraySize; i++) { @@ -272,7 +272,7 @@ static void syncAudioDevicesEnabledArrays(void) { } } -static int flushAudioBuffer() { +static int flushAudioBuffer(void) { int ret = -1; int i, err; @@ -356,11 +356,11 @@ int playAudio(char * playChunk, int size) { return 0; } -int isAudioDeviceOpen() { +int isAudioDeviceOpen(void) { return audioOpened; } -void dropBufferedAudio() { +void dropBufferedAudio(void) { int i; if(0 != memcmp(pdAudioDevicesEnabled, myAudioDevicesEnabled, @@ -377,7 +377,7 @@ void dropBufferedAudio() { } } -void closeAudioDevice() { +void closeAudioDevice(void) { int i; flushAudioBuffer(); @@ -436,7 +436,7 @@ void printAudioDevices(FILE * fp) { } } -void saveAudioDevicesState() { +void saveAudioDevicesState(void) { char *stateFile; FILE *fp; int i; @@ -494,7 +494,7 @@ errline: } } -void readAudioDevicesState() { +void readAudioDevicesState(void) { char *stateFile; FILE *fp; struct stat st; |