diff options
author | Max Kellermann <max@duempel.org> | 2008-01-26 12:46:09 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-01-26 12:46:09 +0000 |
commit | 28008e697720bb2b11989bb887eb468b91409b1a (patch) | |
tree | b9e7eec3bc6a74195a7b4d72cdd2d2897194e2b3 /src/audioOutput.h | |
parent | 7d66859277280e48eb717756cd0b1f50b3ea2054 (diff) | |
download | mpd-28008e697720bb2b11989bb887eb468b91409b1a.tar.gz mpd-28008e697720bb2b11989bb887eb468b91409b1a.tar.xz mpd-28008e697720bb2b11989bb887eb468b91409b1a.zip |
fixed invalid C prototypes
Signed-off-by: Eric Wong <normalperson@yhbt.net>
git-svn-id: https://svn.musicpd.org/mpd/trunk@7142 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/audioOutput.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audioOutput.h b/src/audioOutput.h index 6bde49b39..6c50776c2 100644 --- a/src/audioOutput.h +++ b/src/audioOutput.h @@ -33,7 +33,7 @@ typedef struct _AudioOutput AudioOutput; -typedef int (*AudioOutputTestDefaultDeviceFunc) (); +typedef int (*AudioOutputTestDefaultDeviceFunc) (void); typedef int (*AudioOutputInitDriverFunc) (AudioOutput * audioOutput, ConfigParam * param); |