diff options
| author | Wu Fengguang <[email protected]> | 2006-06-25 05:48:14 -0700 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2006-06-25 10:01:13 -0700 |
| commit | e5dcd90b53d601a04482db9800336a0ccf190880 (patch) | |
| tree | b84936f569134612797cfa069401fe88dcac152d | |
| parent | 3419b23a919698f75944d3e0d97eb1d9c51e4bb6 (diff) | |
[PATCH] radixtree: normalize radix_tree_tag_get() return value
In radix_tree_tag_get(), return normalized value of 0/1, as indicated
by its comment.
Signed-off-by: Wu Fengguang <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
| -rw-r--r-- | lib/radix-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/radix-tree.c b/lib/radix-tree.c index b32efae7688e..637d55608de5 100644 --- a/lib/radix-tree.c +++ b/lib/radix-tree.c @@ -530,7 +530,7 @@ int radix_tree_tag_get(struct radix_tree_root *root, int ret = tag_get(slot, tag, offset); BUG_ON(ret && saw_unset_tag); - return ret; + return !!ret; } slot = slot->slots[offset]; shift -= RADIX_TREE_MAP_SHIFT; |