From: Sage Weil Date: Mon, 3 Aug 2009 19:10:29 +0000 (-0700) Subject: kclient: remove stray ; in dout macro X-Git-Tag: v0.12~27 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=849bae88f20870e19321d12f46b8f357f3c18e76;p=ceph.git kclient: remove stray ; in dout macro --- diff --git a/src/kernel/ceph_debug.h b/src/kernel/ceph_debug.h index da473e38a67a..34aaf5b5269a 100644 --- a/src/kernel/ceph_debug.h +++ b/src/kernel/ceph_debug.h @@ -14,7 +14,7 @@ extern const char *ceph_file_part(const char *s, int len); # define dout(fmt, ...) \ pr_debug(" %12.12s:%-4d : " fmt, \ ceph_file_part(__FILE__, sizeof(__FILE__)), \ - __LINE__, ##__VA_ARGS__); + __LINE__, ##__VA_ARGS__) # else /* faux printk call just to see any compiler warnings. */ # define dout(fmt, ...) do { \