]> err.no Git - dpkg/commitdiff
dpkg-source: Use print instead of printf if printf is not needed
authorFrank Lichtenheld <frank@lichtenheld.de>
Thu, 20 Sep 2007 01:35:32 +0000 (03:35 +0200)
committerFrank Lichtenheld <frank@lichtenheld.de>
Thu, 20 Sep 2007 01:35:32 +0000 (03:35 +0200)
ChangeLog
scripts/dpkg-source.pl

index 11c8bc5ef4dfc463ccc07854d585dcfe9f53e57d..043aec3ce660586ec047aeeb421b85d0d7da264a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2007-09-20  Frank Lichtenheld  <djpig@debian.org>
 
+       * scripts/dpkg-sources.pl (version): Don't use
+       printf if we don't need it, use print instead.
+
        * scripts/dpkg-buildpackage.sh (usage): Fix typo
        s/dpkg-genchangs/dpkg-genchanges/
 
index 898ea833e37dfd0e6cb7428279a8f433a71c03e4..819c468b156bc6863730db3a8c5ab61874758cb4 100755 (executable)
@@ -97,10 +97,10 @@ $SIG{'QUIT'} = \&exit_handler;
 sub version {
     printf _g("Debian %s version %s.\n"), $progname, $version;
 
-    printf _g("
+    print _g("
 Copyright (C) 1996 Ian Jackson and Klee Dienes.");
 
-    printf _g("
+    print _g("
 This is free software; see the GNU General Public Licence version 2 or
 later for copying conditions. There is NO warranty.
 ");