diff options
-rw-r--r-- | include/linux/udf_fs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/udf_fs.h b/include/linux/udf_fs.h index 36c684e1b110..c954527a41be 100644 --- a/include/linux/udf_fs.h +++ b/include/linux/udf_fs.h | |||
@@ -39,11 +39,11 @@ | |||
39 | 39 | ||
40 | #ifdef UDFFS_DEBUG | 40 | #ifdef UDFFS_DEBUG |
41 | #define udf_debug(f, a...) \ | 41 | #define udf_debug(f, a...) \ |
42 | { \ | 42 | do { \ |
43 | printk (KERN_DEBUG "UDF-fs DEBUG %s:%d:%s: ", \ | 43 | printk (KERN_DEBUG "UDF-fs DEBUG %s:%d:%s: ", \ |
44 | __FILE__, __LINE__, __FUNCTION__); \ | 44 | __FILE__, __LINE__, __FUNCTION__); \ |
45 | printk (f, ##a); \ | 45 | printk (f, ##a); \ |
46 | } | 46 | } while (0) |
47 | #else | 47 | #else |
48 | #define udf_debug(f, a...) /**/ | 48 | #define udf_debug(f, a...) /**/ |
49 | #endif | 49 | #endif |