diff options
author | Max Kellermann <max@duempel.org> | 2008-12-16 21:18:31 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-12-16 21:18:31 +0100 |
commit | 1d82edc6d36115ef4ecc251086a5b31c72333e5d (patch) | |
tree | 5fe8742e13da412612554705d052c218923466aa /src/ls.h | |
parent | 3287726736a0432d2316914767b397caab0fd11f (diff) | |
download | mpd-1d82edc6d36115ef4ecc251086a5b31c72333e5d.tar.gz mpd-1d82edc6d36115ef4ecc251086a5b31c72333e5d.tar.xz mpd-1d82edc6d36115ef4ecc251086a5b31c72333e5d.zip |
ls: make printRemoteUrlHandlers() return void
printRemoteUrlHandlers() cannot fail, and does not need a return
value.
Diffstat (limited to '')
-rw-r--r-- | src/ls.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,6 +31,6 @@ int isRemoteUrl(const char *url); const struct decoder_plugin * hasMusicSuffix(const char *utf8file, unsigned int next); -int printRemoteUrlHandlers(struct client *client); +void printRemoteUrlHandlers(struct client *client); #endif |