ls: make printRemoteUrlHandlers() return void

printRemoteUrlHandlers() cannot fail, and does not need a return
value.
This commit is contained in:
Max Kellermann
2008-12-16 21:18:31 +01:00
parent 3287726736
commit 1d82edc6d3
3 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -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