aboutsummaryrefslogtreecommitdiff
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
parent733e3fbc2fb6eb0195cbcc02724d186b1b820df6 (diff)
downloadbusybox-w32-cee0dfcc6a157f54cb517fdc3c438c7e0f67ebc9.tar.gz
busybox-w32-cee0dfcc6a157f54cb517fdc3c438c7e0f67ebc9.tar.bz2
busybox-w32-cee0dfcc6a157f54cb517fdc3c438c7e0f67ebc9.zip
modprobe-small: fix debug leftover
-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)
62} 62}
63 63
64 64
65//#define dbg1_error_msg(...) ((void)0) 65#define dbg1_error_msg(...) ((void)0)
66//#define dbg2_error_msg(...) ((void)0) 66#define dbg2_error_msg(...) ((void)0)
67#define dbg1_error_msg(...) bb_error_msg(__VA_ARGS__) 67//#define dbg1_error_msg(...) bb_error_msg(__VA_ARGS__)
68#define dbg2_error_msg(...) bb_error_msg(__VA_ARGS__) 68//#define dbg2_error_msg(...) bb_error_msg(__VA_ARGS__)
69 69
70extern int init_module(void *module, unsigned long len, const char *options); 70extern int init_module(void *module, unsigned long len, const char *options);
71extern int delete_module(const char *module, unsigned flags); 71extern int delete_module(const char *module, unsigned flags);