diff options
author | Paul Smith <psmith@gnu.org> | 2002-08-08 05:39:17 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2002-08-08 05:39:17 +0000 |
commit | ee3a4f9dd600b4a80a9957e2c3dd90c99d73cf0e (patch) | |
tree | 5d8405750ed260e5ee5a0734d6b76636a62252fc /misc.c | |
parent | f2ceb0d68aa780e57641e50d972fac3b6e70bd58 (diff) | |
download | gunmake-ee3a4f9dd600b4a80a9957e2c3dd90c99d73cf0e.tar.gz |
Change the version.
Update to require new gettext.
Change hash.c to by K&R.
Redo some strings to make i18n simpler.
Diffstat (limited to 'misc.c')
-rw-r--r-- | misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -339,7 +339,7 @@ void perror_with_name (str, name) const char *str, *name; { - error (NILF, "%s%s: %s", str, name, strerror (errno)); + error (NILF, _("%s%s: %s"), str, name, strerror (errno)); } /* Print an error message from errno and exit. */ @@ -348,7 +348,7 @@ void pfatal_with_name (name) const char *name; { - fatal (NILF, "%s: %s", name, strerror (errno)); + fatal (NILF, _("%s: %s"), name, strerror (errno)); /* NOTREACHED */ } |