diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-01-08 01:04:01 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-08 20:14:01 -0800 |
commit | ddc0f846aa7621940b74cee0c91cd26405058a4d (patch) | |
tree | 74909608259f44d538dc4389ad9b04d2b0352274 /fs/udf | |
parent | 37a327957e4b193369854f76afcedaee8d903521 (diff) | |
download | linux-3.10-ddc0f846aa7621940b74cee0c91cd26405058a4d.tar.gz linux-3.10-ddc0f846aa7621940b74cee0c91cd26405058a4d.tar.bz2 linux-3.10-ddc0f846aa7621940b74cee0c91cd26405058a4d.zip |
[PATCH] fs/udf/balloc.c: "extern inline" -> "static inline"
"extern inline" doesn't make much sense.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/udf')
-rw-r--r-- | fs/udf/balloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/udf/balloc.c b/fs/udf/balloc.c index 6598a5037ac..4fae57d9d11 100644 --- a/fs/udf/balloc.c +++ b/fs/udf/balloc.c @@ -41,7 +41,7 @@ #define uint(x) xuint(x) #define xuint(x) __le ## x -extern inline int find_next_one_bit (void * addr, int size, int offset) +static inline int find_next_one_bit (void * addr, int size, int offset) { uintBPL_t * p = ((uintBPL_t *) addr) + (offset / BITS_PER_LONG); int result = offset & ~(BITS_PER_LONG-1); |