diff options
author | wens <wens@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-03-21 19:47:30 +0800 |
---|---|---|
committer | wens <wens@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-03-21 19:47:30 +0800 |
commit | 4813f76942b44fa45159fcd743657ce203601464 (patch) | |
tree | bac6a970516342f06c672bafbdf11c93e95da7b6 /mbbsd/user.c | |
parent | 66a0e0e786412114be7e2439b816b2780601e016 (diff) | |
download | pttbbs-4813f76942b44fa45159fcd743657ce203601464.tar pttbbs-4813f76942b44fa45159fcd743657ce203601464.tar.gz pttbbs-4813f76942b44fa45159fcd743657ce203601464.tar.bz2 pttbbs-4813f76942b44fa45159fcd743657ce203601464.tar.lz pttbbs-4813f76942b44fa45159fcd743657ce203601464.tar.xz pttbbs-4813f76942b44fa45159fcd743657ce203601464.tar.zst pttbbs-4813f76942b44fa45159fcd743657ce203601464.zip |
Clean up some compile warnings (unused, signess)
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4448 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/user.c')
-rw-r--r-- | mbbsd/user.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/user.c b/mbbsd/user.c index 68f79a83..d2778619 100644 --- a/mbbsd/user.c +++ b/mbbsd/user.c @@ -986,7 +986,7 @@ uinfo_query(userec_t *u, int adminmode, int unum) case '3': { - int tmp = setperms(x.userlevel, str_permid); + unsigned int tmp = setperms(x.userlevel, str_permid); if (tmp == x.userlevel) fail++; else { |