aboutsummaryrefslogtreecommitdiff
path: root/miscutils
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-07-31 21:05:19 +0000
committerMike Frysinger <vapier@gentoo.org>2005-07-31 21:05:19 +0000
commit6f978dbacdd88a28bafe5b944a0bfff2203ef190 (patch)
tree1407f4860f9da2728dec0d08c7e513d0b619fefb /miscutils
parent08c20362f5c0103e27ccc1cda03a41a697e587b0 (diff)
downloadbusybox-6f978dbacdd88a28bafe5b944a0bfff2203ef190.tar.gz
eat leading whitespace with preprocessor
Diffstat (limited to 'miscutils')
-rw-r--r--miscutils/devfsd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/devfsd.c b/miscutils/devfsd.c
index 34945c7b2..0a6bf14c7 100644
--- a/miscutils/devfsd.c
+++ b/miscutils/devfsd.c
@@ -932,9 +932,9 @@ static void action_modload (const struct devfsd_notify_struct *info,
argv[5] = NULL;
snprintf (device, sizeof (device), "/dev/%s", info->devname);
- #ifdef CONFIG_DEBUG
+#ifdef CONFIG_DEBUG
msg_logger( NO_DIE, LOG_INFO, "action_modload():%s %s %s %s %s\n",argv[0],argv[1],argv[2],argv[3],argv[4]);
- #endif
+#endif
fork_and_execute(DIE, argv[0], argv);
} /* End Function action_modload */
#endif