aboutsummaryrefslogtreecommitdiff
path: root/libbb/xfuncs.c
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-11-18 22:04:09 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-11-18 22:04:09 +0000
commit5fbe80c88a10cf2f357c3eb50990aa345bd5257a (patch)
treefc0d65e0d33b5b526b0d44d4c4da8143be3b53b1 /libbb/xfuncs.c
parent8c464c6dfa6a2fe87ca2762a237811b3ce2a8730 (diff)
downloadbusybox-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 'libbb/xfuncs.c')
-rw-r--r--libbb/xfuncs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c
index 352515af4..44a551639 100644
--- a/libbb/xfuncs.c
+++ b/libbb/xfuncs.c
@@ -412,7 +412,7 @@ DIR *warn_opendir(const char *path)
412 DIR *dp; 412 DIR *dp;
413 413
414 if ((dp = opendir(path)) == NULL) { 414 if ((dp = opendir(path)) == NULL) {
415 bb_perror_msg("unable to open `%s'", path); 415 bb_perror_msg("cannot open '%s'", path);
416 return NULL; 416 return NULL;
417 } 417 }
418 return dp; 418 return dp;
@@ -424,7 +424,7 @@ DIR *xopendir(const char *path)
424 DIR *dp; 424 DIR *dp;
425 425
426 if ((dp = opendir(path)) == NULL) 426 if ((dp = opendir(path)) == NULL)
427 bb_perror_msg_and_die("unable to open `%s'", path); 427 bb_perror_msg_and_die("cannot open '%s'", path);
428 return dp; 428 return dp;
429} 429}
430 430