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/inputPlugin.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 'src/inputPlugin.h')
-rw-r--r-- | src/inputPlugin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inputPlugin.h b/src/inputPlugin.h index 6e9b21106..ecb1b9801 100644 --- a/src/inputPlugin.h +++ b/src/inputPlugin.h @@ -31,10 +31,10 @@ /* optional, set this to NULL if the InputPlugin doesn't have/need one * this must return < 0 if there is an error and >= 0 otherwise */ -typedef int (*InputPlugin_initFunc) (); +typedef int (*InputPlugin_initFunc) (void); /* optional, set this to NULL if the InputPlugin doesn't have/need one */ -typedef void (*InputPlugin_finishFunc) (); +typedef void (*InputPlugin_finishFunc) (void); /* boolean return value, returns 1 if the InputStream is decodable by * the InputPlugin, 0 if not */ |