Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-30 01:30:43 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-30 01:30:43 +0400
commita959588b80529ef5e02048ed71f3c7bf9a117217 (patch)
tree331b3963cb98fded02b753ca33bfa37cb48a97c6 /util-linux
parent6c30db8bd37da1466dc71bf3c8c20851d8f46c43 (diff)
Yet another silly little byte saving. couldn't -> cannot
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/mdev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mdev.c b/util-linux/mdev.c
index acc5012d4..b292e14b7 100644
--- a/util-linux/mdev.c
+++ b/util-linux/mdev.c
@@ -185,7 +185,7 @@ static void make_device(char *path, int delete)
putenv(s);
free(s);
free(command);
- if (rc == -1) bb_perror_msg_and_die("Couldn't run %s", command);
+ if (rc == -1) bb_perror_msg_and_die("cannot run %s", command);
}
if (delete) unlink(device_name);
}