Project Info Name.......: gnu-hello
Description: GNU Hello


gnu-hello       
Info
Commit...:09a54d9310dec1be66d940f4302c819079bbe6b6
Author...:karl <>
Committer:karl <>
Date.....:Wed Aug 23 13:57:15 2006 +0000
Parents..:e1d8daeec195fcc9e60c4a23320e49022678ca73

Message
[project @ 2006-08-23 13:57:15 by karl]
excise extra printf arg

Changes
diff --git a/src/ChangeLog b/src/ChangeLog
line changes: +5/-0
index e02344d..75f9be5
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
+2006-08-23  Karl Berry  <karl@gnu.org>
+
+	* hello.c (main): remove extra argument passed to printf in
+	version output.
+
 2006-08-23  Bruno Haible  <bruno@clisp.org>
 
 	* hello.c (program_name): Renamed from progname. Make non-static.

diff --git a/src/hello.c b/src/hello.c
line changes: +1/-1
index 3f25e9a..d4e2888
--- a/src/hello.c
+++ b/src/hello.c
@@ -138,7 +138,7 @@ Report bugs to <%s>.\n"), PACKAGE_BUGREPORT);
 Copyright (C) %s Free Software Foundation, Inc.\n\
 License: GNU GPL v2+ <http://www.gnu.org/licenses/gpl.html>\n\
 This is free software.  There is NO WARRANTY, to the extent permitted by law.\n"),
-              "2006", PACKAGE);
+              "2006");
     }
 
   else

This website is licensed under AGPL-3.0. Feel free to copy!