aboutsummaryrefslogtreecommitdiff
path: root/modutils/modprobe-small.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-07-06 11:11:35 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-07-06 11:11:35 +0000
commitcee0dfcc6a157f54cb517fdc3c438c7e0f67ebc9 (patch)
tree62bbc976addb6bc11b5f6cefae647b5a6a197a52 /modutils/modprobe-small.c
parent733e3fbc2fb6eb0195cbcc02724d186b1b820df6 (diff)
downloadbusybox-cee0dfcc6a157f54cb517fdc3c438c7e0f67ebc9.tar.gz
modprobe-small: fix debug leftover
Diffstat (limited to 'modutils/modprobe-small.c')
-rw-r--r--modutils/modprobe-small.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/modutils/modprobe-small.c b/modutils/modprobe-small.c
index 6131d4280..3aa06d57e 100644
--- a/modutils/modprobe-small.c
+++ b/modutils/modprobe-small.c
@@ -62,10 +62,10 @@ static void *xmalloc_read(int fd, size_t *sizep)
}
-//#define dbg1_error_msg(...) ((void)0)
-//#define dbg2_error_msg(...) ((void)0)
-#define dbg1_error_msg(...) bb_error_msg(__VA_ARGS__)
-#define dbg2_error_msg(...) bb_error_msg(__VA_ARGS__)
+#define dbg1_error_msg(...) ((void)0)
+#define dbg2_error_msg(...) ((void)0)
+//#define dbg1_error_msg(...) bb_error_msg(__VA_ARGS__)
+//#define dbg2_error_msg(...) bb_error_msg(__VA_ARGS__)
extern int init_module(void *module, unsigned long len, const char *options);
extern int delete_module(const char *module, unsigned flags);