From: Jim Meyering Date: Fri, 11 Jul 2003 10:33:12 +0000 (+0000) Subject: (main): Enclose diagnostic in _(...). X-Git-Tag: v5.0.1~102 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e96ddb3907af0ef7a79ef0dcd76fcef50dc939ee;p=thirdparty%2Fcoreutils.git (main): Enclose diagnostic in _(...). --- diff --git a/src/mknod.c b/src/mknod.c index 01b11f47b7..1d8278a57f 100644 --- a/src/mknod.c +++ b/src/mknod.c @@ -1,5 +1,5 @@ /* mknod -- make special files - Copyright (C) 90, 91, 1995-2002 Free Software Foundation, Inc. + Copyright (C) 90, 91, 1995-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -218,7 +218,7 @@ major and minor device numbers may not be specified for fifo files")); break; default: - error (0, 0, "invalid device type %s", quote (argv[optind + 1])); + error (0, 0, _("invalid device type %s"), quote (argv[optind + 1])); usage (EXIT_FAILURE); }