[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[dm-devel] [PATCH] fix debugging macro
- From: Guido Guenther <agx sigxcpu org>
- To: Christophe Varoqui <christophe varoqui free fr>
- Cc: dm-devel redhat com
- Subject: [dm-devel] [PATCH] fix debugging macro
- Date: Sat, 9 Jun 2007 17:30:38 +0200
Minor cleanup: let the macro do something useful when DEBUG is defined
Signed-off-by: Guido Guenther <agx sigxcpu org>
---
libmultipath/sysfs.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libmultipath/sysfs.h b/libmultipath/sysfs.h
index cf3af36..2625ee5 100644
--- a/libmultipath/sysfs.h
+++ b/libmultipath/sysfs.h
@@ -6,9 +6,9 @@
#define _LIBMULTIPATH_SYSFS_H
#ifdef DEBUG
-# define dbg printf
+# define dbg(format, args...) printf(format "\n", ##args)
#else
-# define dbg(format, arg...) do {} while (0)
+# define dbg(format, args...) do {} while (0)
#endif
int sysfs_init(char *path, size_t len);
--
1.5.2.1
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]