From 0bf396d610a78a16e49fe72f9ba4aa9a49a6053c Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Mon, 17 Jul 2006 21:46:32 +0000 Subject: some quick hacks to avoid signedness warnings with gcc4 git-svn-id: https://svn.musicpd.org/mpd/trunk@4387 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/command.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/command.h') diff --git a/src/command.h b/src/command.h index 2f025f3b..410c2519 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(); -- cgit v1.2.3