diff options
author | Nathaniel Yazdani <n1ght.4nd.d4y@gmail.com> | 2013-07-03 16:52:21 -0400 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2013-07-22 09:16:37 -0400 |
commit | 75b9222556ede41b9bd9d2d0dcb998f668b49b5f (patch) | |
tree | 3613588b4e571e0d92b627a9009377c14d3ea810 /include/linux/jbd.h | |
parent | 3b2f64d00c46e1e4e9bd0bb9bb12619adac27a4b (diff) |
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>
Diffstat (limited to 'include/linux/jbd.h')
-rw-r--r-- | include/linux/jbd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/jbd.h b/include/linux/jbd.h index 8685d1be12c7..bc3e57d367fc 100644 --- a/include/linux/jbd.h +++ b/include/linux/jbd.h | |||
@@ -77,7 +77,7 @@ static inline void *jbd_alloc(size_t size, gfp_t flags) | |||
77 | static inline void jbd_free(void *ptr, size_t size) | 77 | static inline void jbd_free(void *ptr, size_t size) |
78 | { | 78 | { |
79 | free_pages((unsigned long)ptr, get_order(size)); | 79 | free_pages((unsigned long)ptr, get_order(size)); |
80 | }; | 80 | } |
81 | 81 | ||
82 | #define JFS_MIN_JOURNAL_BLOCKS 1024 | 82 | #define JFS_MIN_JOURNAL_BLOCKS 1024 |
83 | 83 | ||