summaryrefslogtreecommitdiffstats
path: root/src/strip.c
diff options
context:
space:
mode:
authorUlrich Drepper <[email protected]>2005-09-03 16:42:46 +0000
committerUlrich Drepper <[email protected]>2005-09-03 16:42:46 +0000
commite3f9b7db6c7361579ec5cc5eb5e414f7e93baeb6 (patch)
treecfd78459bef5ec9a464464dcafb48827eb32f3cc /src/strip.c
parentd0449526a43807acf72cb5c9d5c1320290b9b914 (diff)
Cleanup of messages.
Diffstat (limited to 'src/strip.c')
-rw-r--r--src/strip.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/strip.c b/src/strip.c
index 42e13b46..97078d6b 100644
--- a/src/strip.c
+++ b/src/strip.c
@@ -282,7 +282,7 @@ process_file (const char *fname)
{
if (stat64 (fname, &pre_st) != 0)
{
- error (0, errno, gettext ("cannot stat input file \"%s\""), fname);
+ error (0, errno, gettext ("cannot stat input file '%s'"), fname);
return 1;
}
@@ -296,7 +296,7 @@ process_file (const char *fname)
int fd = open (fname, output_fname == NULL ? O_RDWR : O_RDONLY);
if (fd == -1)
{
- error (0, errno, gettext ("while opening \"%s\""), fname);
+ error (0, errno, gettext ("while opening '%s'"), fname);
return 1;
}
@@ -306,7 +306,7 @@ process_file (const char *fname)
struct stat64 st;
if (fstat64 (fd, &st) != 0)
{
- error (0, errno, gettext ("cannot stat input file \"%s\""), fname);
+ error (0, errno, gettext ("cannot stat input file '%s'"), fname);
return 1;
}
/* Paranoid mode on. */