linux-ext4.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] jbd: remove unneeded semicolon
@ 2013-07-03 20:52 Nathaniel Yazdani
  2013-07-03 22:59 ` Jan Kara
  0 siblings, 1 reply; 2+ messages in thread
From: Nathaniel Yazdani @ 2013-07-03 20:52 UTC (permalink / raw)
  To: akpm, jack; +Cc: linux-ext4, linux-kernel, Nathaniel Yazdani

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>
---
diff --git a/include/linux/jbd.h b/include/linux/jbd.h
index 7e0b622..9d789a9 100644
--- a/include/linux/jbd.h
+++ b/include/linux/jbd.h
@@ -78,7 +78,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
 

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-07-03 22:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-03 20:52 [PATCH] jbd: remove unneeded semicolon Nathaniel Yazdani
2013-07-03 22:59 ` Jan Kara

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).