Browse Source

jbd: remove unneeded semicolon

This patch removes an unnecessary semicolon that was placed after the
closing bracket of an inline JBD wrapper function.

Signed-off-by: Nathaniel Yazdani <n1ght.4nd.d4y@gmail.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Nathaniel Yazdani 12 years ago
parent
commit
75b9222556
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/linux/jbd.h

+ 1 - 1
include/linux/jbd.h

@@ -77,7 +77,7 @@ static inline void *jbd_alloc(size_t size, gfp_t flags)
 static inline void jbd_free(void *ptr, size_t size)
 {
 	free_pages((unsigned long)ptr, get_order(size));
-};
+}
 
 #define JFS_MIN_JOURNAL_BLOCKS 1024