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>
diff --git a/include/linux/jbd.h b/include/linux/jbd.h
index 8685d1b..bc3e57d 100644
--- a/include/linux/jbd.h
+++ b/include/linux/jbd.h
@@ -77,7 +77,7 @@
 static inline void jbd_free(void *ptr, size_t size)
 {
 	free_pages((unsigned long)ptr, get_order(size));
-};
+}
 
 #define JFS_MIN_JOURNAL_BLOCKS 1024