diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-10-14 19:35:50 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-14 12:41:52 -0700 |
commit | 5ba253313d014364a9b87b6fa975ce2fc9759aa6 (patch) | |
tree | b6f7b222b980d7a28e8d73d6cf939454a77205b1 /lib | |
parent | b4482a4b2e2ff5ed96d8d16d72e83e75064062c5 (diff) | |
download | linux-5ba253313d014364a9b87b6fa975ce2fc9759aa6.tar.bz2 |
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 'lib')
-rw-r--r-- | lib/idr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/idr.c b/lib/idr.c index d0f1acdbfa3a..09cbe2b69edb 100644 --- a/lib/idr.c +++ b/lib/idr.c @@ -120,7 +120,7 @@ static int sub_alloc(struct idr *idp, int *starting_id, struct idr_layer **pa) int n, m, sh; struct idr_layer *p, *new; int l, id, oid; - long bm; + unsigned long bm; id = *starting_id; restart: |