diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-10-14 14:35:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-14 15:41:52 -0400 |
commit | 5ba253313d014364a9b87b6fa975ce2fc9759aa6 (patch) | |
tree | b6f7b222b980d7a28e8d73d6cf939454a77205b1 /fs/smbfs | |
parent | b4482a4b2e2ff5ed96d8d16d72e83e75064062c5 (diff) |
more low-hanging fruits - kernel, fs, lib signedness
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/smbfs')
-rw-r--r-- | fs/smbfs/smbiod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/smbfs/smbiod.c b/fs/smbfs/smbiod.c index 67176af8515f..283c5720c9de 100644 --- a/fs/smbfs/smbiod.c +++ b/fs/smbfs/smbiod.c | |||
@@ -45,7 +45,7 @@ static LIST_HEAD(smb_servers); | |||
45 | static DEFINE_SPINLOCK(servers_lock); | 45 | static DEFINE_SPINLOCK(servers_lock); |
46 | 46 | ||
47 | #define SMBIOD_DATA_READY (1<<0) | 47 | #define SMBIOD_DATA_READY (1<<0) |
48 | static long smbiod_flags; | 48 | static unsigned long smbiod_flags; |
49 | 49 | ||
50 | static int smbiod(void *); | 50 | static int smbiod(void *); |
51 | static int smbiod_start(void); | 51 | static int smbiod_start(void); |