aboutsummaryrefslogtreecommitdiff
path: root/miscutils
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-12 00:32:05 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-12 00:32:05 +0000
commite91ac05530803390f7aa5ca646d90ae26c48aa52 (patch)
tree7a912fc65ff43bdb09078d75bfc02ad8f5380b47 /miscutils
parent13adb67bb086c45d7191966ca5fa3bff1de2dd74 (diff)
downloadbusybox-w32-e91ac05530803390f7aa5ca646d90ae26c48aa52.tar.gz
busybox-w32-e91ac05530803390f7aa5ca646d90ae26c48aa52.tar.bz2
busybox-w32-e91ac05530803390f7aa5ca646d90ae26c48aa52.zip
style fixes. No code changes
git-svn-id: svn://busybox.net/trunk/busybox@18409 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'miscutils')
-rw-r--r--miscutils/makedevs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/makedevs.c b/miscutils/makedevs.c
index aa000a7ab..fce7ea43d 100644
--- a/miscutils/makedevs.c
+++ b/miscutils/makedevs.c
@@ -48,7 +48,7 @@ int makedevs_main(int argc, char **argv)
48 int sz; 48 int sz;
49 49
50 sz = snprintf(buf, sizeof(buf), "%s%d", basedev, S); 50 sz = snprintf(buf, sizeof(buf), "%s%d", basedev, S);
51 if(sz<0 || sz>=sizeof(buf)) /* libc different */ 51 if (sz < 0 || sz >= sizeof(buf)) /* libc different */
52 bb_error_msg_and_die("%s too large", basedev); 52 bb_error_msg_and_die("%s too large", basedev);
53 53
54 /* if mode != S_IFCHR and != S_IFBLK third param in mknod() ignored */ 54 /* if mode != S_IFCHR and != S_IFBLK third param in mknod() ignored */