From: Nathaniel Yazdani Date: Wed, 3 Jul 2013 20:52:21 +0000 (-0700) Subject: jbd: remove unneeded semicolon X-Git-Tag: next-20130802~89^2~4 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=75b9222556ede41b9bd9d2d0dcb998f668b49b5f;p=karo-tx-linux.git 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 Signed-off-by: Jan Kara --- 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) static inline void jbd_free(void *ptr, size_t size) { free_pages((unsigned long)ptr, get_order(size)); -}; +} #define JFS_MIN_JOURNAL_BLOCKS 1024