diff options
author | Jim Meyering <jim@meyering.net> | 2003-07-11 10:33:12 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-07-11 10:33:12 +0000 |
commit | e96ddb3907af0ef7a79ef0dcd76fcef50dc939ee (patch) | |
tree | 297bf01ae2fcccbfd7b911411dbdb67182bdae3d /src | |
parent | b8760e0f0926ed2f57ff6c101b6c58b04d6810a8 (diff) | |
download | coreutils-e96ddb3907af0ef7a79ef0dcd76fcef50dc939ee.tar.xz |
(main): Enclose diagnostic in _(...).
Diffstat (limited to 'src')
-rw-r--r-- | src/mknod.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mknod.c b/src/mknod.c index 01b11f47b..1d8278a57 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); } |