diff options
author | Richard Knutsson <ricknu-0@student.ltu.se> | 2006-10-01 02:27:12 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-01 03:39:19 -0400 |
commit | c49c31115067bc7c9a51ffdc735a515151dfa3eb (patch) | |
tree | 1ffeddacb5cf06fbdb8a1fc385eb9ee5f1c3174c /fs/ntfs/index.c | |
parent | 6e21828743247270d09a86756a0c11702500dbfb (diff) |
[PATCH] fs/ntfs: Conversion to generic boolean
Conversion of booleans to: generic-boolean.patch (2006-08-23)
Signed-off-by: Richard Knutsson <ricknu-0@student.ltu.se>
Signed-off-by: Anton Altaparmakov <aia21@cantab.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/ntfs/index.c')
-rw-r--r-- | fs/ntfs/index.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ntfs/index.c b/fs/ntfs/index.c index 9f5427c2d105..e32cde486362 100644 --- a/fs/ntfs/index.c +++ b/fs/ntfs/index.c | |||
@@ -204,7 +204,7 @@ int ntfs_index_lookup(const void *key, const int key_len, | |||
204 | if ((key_len == le16_to_cpu(ie->key_length)) && !memcmp(key, | 204 | if ((key_len == le16_to_cpu(ie->key_length)) && !memcmp(key, |
205 | &ie->key, key_len)) { | 205 | &ie->key, key_len)) { |
206 | ir_done: | 206 | ir_done: |
207 | ictx->is_in_root = TRUE; | 207 | ictx->is_in_root = true; |
208 | ictx->ir = ir; | 208 | ictx->ir = ir; |
209 | ictx->actx = actx; | 209 | ictx->actx = actx; |
210 | ictx->base_ni = base_ni; | 210 | ictx->base_ni = base_ni; |
@@ -374,7 +374,7 @@ fast_descend_into_child_node: | |||
374 | if ((key_len == le16_to_cpu(ie->key_length)) && !memcmp(key, | 374 | if ((key_len == le16_to_cpu(ie->key_length)) && !memcmp(key, |
375 | &ie->key, key_len)) { | 375 | &ie->key, key_len)) { |
376 | ia_done: | 376 | ia_done: |
377 | ictx->is_in_root = FALSE; | 377 | ictx->is_in_root = false; |
378 | ictx->actx = NULL; | 378 | ictx->actx = NULL; |
379 | ictx->base_ni = NULL; | 379 | ictx->base_ni = NULL; |
380 | ictx->ia = ia; | 380 | ictx->ia = ia; |