Skip to content

Commit

Permalink
[PATCH] fs/udf/balloc.c: "extern inline" -> "static inline"
Browse files Browse the repository at this point in the history
"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>
  • Loading branch information
Adrian Bunk authored and Linus Torvalds committed Jan 9, 2006
1 parent 37a3279 commit ddc0f84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/udf/balloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit ddc0f84

Please sign in to comment.