diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-11-18 22:04:09 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-11-18 22:04:09 +0000 |
commit | 5fbe80c88a10cf2f357c3eb50990aa345bd5257a (patch) | |
tree | fc0d65e0d33b5b526b0d44d4c4da8143be3b53b1 /shell | |
parent | 8c464c6dfa6a2fe87ca2762a237811b3ce2a8730 (diff) | |
download | busybox-w32-5fbe80c88a10cf2f357c3eb50990aa345bd5257a.tar.gz busybox-w32-5fbe80c88a10cf2f357c3eb50990aa345bd5257a.tar.bz2 busybox-w32-5fbe80c88a10cf2f357c3eb50990aa345bd5257a.zip |
rodata cleanup. "unable to" == "cannot". -300 bytes
git-svn-id: svn://busybox.net/trunk/busybox@16580 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r-- | shell/msh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/msh.c b/shell/msh.c index 6c805b53e..c0f013e98 100644 --- a/shell/msh.c +++ b/shell/msh.c | |||
@@ -2786,7 +2786,7 @@ forkexec(struct op *t, int *pin, int *pout, int act, char **wp) | |||
2786 | newpid = vfork(); | 2786 | newpid = vfork(); |
2787 | 2787 | ||
2788 | if (newpid == -1) { | 2788 | if (newpid == -1) { |
2789 | DBGPRINTF(("FORKEXEC: ERROR, unable to vfork()!\n")); | 2789 | DBGPRINTF(("FORKEXEC: ERROR, cannot vfork()!\n")); |
2790 | return (-1); | 2790 | return (-1); |
2791 | } | 2791 | } |
2792 | 2792 | ||