diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2006-07-17 21:46:32 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2006-07-17 21:46:32 +0000 |
commit | 0bf396d610a78a16e49fe72f9ba4aa9a49a6053c (patch) | |
tree | 256510d9881995736292afa522a3c38b7d2aee20 /src/command.h | |
parent | 7fdcd56a99f4c302d0e56c68e9c9db22d59b31b5 (diff) | |
download | mpd-0bf396d610a78a16e49fe72f9ba4aa9a49a6053c.tar.gz mpd-0bf396d610a78a16e49fe72f9ba4aa9a49a6053c.tar.xz mpd-0bf396d610a78a16e49fe72f9ba4aa9a49a6053c.zip |
some quick hacks to avoid signedness warnings with gcc4
git-svn-id: https://svn.musicpd.org/mpd/trunk@4387 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/command.h')
-rw-r--r-- | src/command.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command.h b/src/command.h index 2f025f3b1..410c25197 100644 --- a/src/command.h +++ b/src/command.h @@ -38,7 +38,7 @@ extern int command_listNum; int processListOfCommands(FILE * fp, int * permission, int * expired, int listOK, List * list); -int processCommand(FILE * fp, unsigned int * permission, char * commandString); +int processCommand(FILE * fp, int * permission, char * commandString); void initCommands(); |