diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2003-07-23 08:47:41 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2003-07-23 08:47:41 +0000 |
commit | c154fc3a204a1452297bf399bbc3caef7e0f16b4 (patch) | |
tree | ec111344790e54e6080f36c0b5e046ac5c89578f /src/bin/scripts/createlang.c | |
parent | a0743b132eef5ed8896f4c2d551af424691ba350 (diff) | |
download | postgresql-c154fc3a204a1452297bf399bbc3caef7e0f16b4.tar.gz postgresql-c154fc3a204a1452297bf399bbc3caef7e0f16b4.zip |
Apply message style guide to frontend programs.
Diffstat (limited to 'src/bin/scripts/createlang.c')
-rw-r--r-- | src/bin/scripts/createlang.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bin/scripts/createlang.c b/src/bin/scripts/createlang.c index 1664238b5e6..01df2a3275e 100644 --- a/src/bin/scripts/createlang.c +++ b/src/bin/scripts/createlang.c @@ -5,7 +5,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Header: /cvsroot/pgsql/src/bin/scripts/createlang.c,v 1.4 2003/06/30 18:31:42 tgl Exp $ + * $Header: /cvsroot/pgsql/src/bin/scripts/createlang.c,v 1.5 2003/07/23 08:47:41 petere Exp $ * *------------------------------------------------------------------------- */ @@ -91,7 +91,7 @@ main(int argc, char *argv[]) echo = true; break; default: - fprintf(stderr, _("Try '%s --help' for more information.\n"), progname); + fprintf(stderr, _("Try \"%s --help\" for more information.\n"), progname); exit(1); } } @@ -110,9 +110,9 @@ main(int argc, char *argv[]) if (argc - optind > 0) { - fprintf(stderr, _("%s: too many command-line arguments (first is '%s')\n"), + fprintf(stderr, _("%s: too many command-line arguments (first is \"%s\")\n"), progname, argv[optind]); - fprintf(stderr, _("Try '%s --help' for more information.\n"), progname); + fprintf(stderr, _("Try \"%s --help\" for more information.\n"), progname); exit(1); } @@ -154,7 +154,7 @@ main(int argc, char *argv[]) if (langname == NULL) { fprintf(stderr, _("%s: missing required argument language name\n"), progname); - fprintf(stderr, _("Try '%s --help' for more information.\n"), progname); + fprintf(stderr, _("Try \"%s --help\" for more information.\n"), progname); exit(1); } |