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 /lib | |
| 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 'lib')
| -rw-r--r-- | lib/idr.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -120,7 +120,7 @@ static int sub_alloc(struct idr *idp, int *starting_id, struct idr_layer **pa) | |||
| 120 | int n, m, sh; | 120 | int n, m, sh; |
| 121 | struct idr_layer *p, *new; | 121 | struct idr_layer *p, *new; |
| 122 | int l, id, oid; | 122 | int l, id, oid; |
| 123 | long bm; | 123 | unsigned long bm; |
| 124 | 124 | ||
| 125 | id = *starting_id; | 125 | id = *starting_id; |
| 126 | restart: | 126 | restart: |
