]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
tap: fix typo in TAP driver version message
authorStefano Lattarini <stefano.lattarini@gmail.com>
Fri, 5 Aug 2011 18:59:03 +0000 (20:59 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Fri, 5 Aug 2011 18:59:03 +0000 (20:59 +0200)
* lib/tap-driver (anonymous subroutine printing the script version
message): Add missing trailing newline to the version message.

ChangeLog
lib/tap-driver

index 6036f422bad7827b9fa1c3eb12d34e606043cfb3..b44766c6b4940ed1bab0436f78ca3a39b3963d07 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-08-05  Stefano Lattarini  <stefano.lattarini@gmail.com>
+
+       tap: fix typo in TAP driver version message
+       * lib/tap-driver (anonymous subroutine printing the script version
+       message): Add missing trailing newline to the version message.
+
 2011-08-05  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
        tap docs: we don't support pragma or version directives (yet)
index c748c5c4c9d8d11eba2771b71454bc7ee50c8152..91edd1e0567d09a3c395222f50e24b3c5f2a60ec 100755 (executable)
@@ -68,7 +68,7 @@ my $diag_string = "#";
 
 Getopt::Long::GetOptions (
     'help' => sub { print $HELP; exit 0; },
-    'version' => sub { print "$ME $VERSION"; exit 0; },
+    'version' => sub { print "$ME $VERSION\n"; exit 0; },
     'test-name=s' => \$test_script_name,
     'log-file=s' => \$log_file,
     'trs-file=s' => \$trs_file,