---
src/hello.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/hello.c b/src/hello.c
index 6c1fdbd..38e10e4 100644
--- a/src/hello.c
+++ b/src/hello.c
@@ -180,7 +180,7 @@ Report bugs to: %s\n"), PACKAGE_BUGREPORT);
printf (_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
#else
printf (_("%s home page: <http://www.gnu.org/software/%s/>\n"),
- PACKAGE_NAME, PACKAGE);
+ PACKAGE_NAME, PACKAGE);
#endif
fputs (_("General help using GNU software: <http://www.gnu.org/gethelp/>\n"),
stdout);
@@ -193,7 +193,7 @@ Report bugs to: %s\n"), PACKAGE_BUGREPORT);
static void
print_version (void)
{
- printf ("hello (GNU %s) %s\n", PACKAGE, VERSION);
+ printf ("%s (%s) %s\n", PACKAGE, PACKAGE_NAME, VERSION);
/* xgettext: no-wrap */
puts ("");
--
1.8.2.3