aboutsummaryrefslogtreecommitdiff
path: root/miscutils/makedevs.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-10-20 13:28:22 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-10-20 13:28:22 +0000
commite1a0d486e4804eae098571f1a6788394c2ee51ae (patch)
treec6f3435738900c8d53832eb919b1b2c3d524f2e5 /miscutils/makedevs.c
parentdd2982882bb192ea757f32514bc2ea0bc96f5ba0 (diff)
downloadbusybox-w32-e1a0d486e4804eae098571f1a6788394c2ee51ae.tar.gz
busybox-w32-e1a0d486e4804eae098571f1a6788394c2ee51ae.tar.bz2
busybox-w32-e1a0d486e4804eae098571f1a6788394c2ee51ae.zip
message string changes, mostly for consistency, also -32 bytes in .rodata
Diffstat (limited to 'miscutils/makedevs.c')
-rw-r--r--miscutils/makedevs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/makedevs.c b/miscutils/makedevs.c
index 6ff5cc223..3bc1559c7 100644
--- a/miscutils/makedevs.c
+++ b/miscutils/makedevs.c
@@ -53,7 +53,7 @@ int makedevs_main(int argc, char **argv)
53 /* if mode != S_IFCHR and != S_IFBLK third param in mknod() ignored */ 53 /* if mode != S_IFCHR and != S_IFBLK third param in mknod() ignored */
54 54
55 if (mknod(nodname, mode, makedev(Smajor, Sminor))) 55 if (mknod(nodname, mode, makedev(Smajor, Sminor)))
56 bb_error_msg("Failed to create: %s", nodname); 56 bb_error_msg("failed to create: %s", nodname);
57 57
58 if (nodname == basedev) /* ex. /dev/hda - to /dev/hda1 ... */ 58 if (nodname == basedev) /* ex. /dev/hda - to /dev/hda1 ... */
59 nodname = buf; 59 nodname = buf;