diff options
author | Petr Mladek <pmladek@suse.cz> | 2012-06-13 12:55:13 +0200 |
---|---|---|
committer | Petr Mladek <pmladek@suse.cz> | 2012-06-13 12:55:13 +0200 |
commit | 6c968d5d1974a205f6b5a320cc277ad23cb8518b (patch) | |
tree | e1d48720c97a62ca131bd96016989dddce4ff625 /bin | |
parent | e80b5f0a88db0acda3cfe6abc221ee4b3b264e90 (diff) |
lo-commit-stat: really print the piece title into the log file
perl is really funny; the file handle can't be delimited by a comma
Change-Id: I49661d784ec3a10134e448800a3b81343e6748b1
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/lo-commit-stat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/lo-commit-stat b/bin/lo-commit-stat index d6b7846ca5bb..d2b6d8557049 100755 --- a/bin/lo-commit-stat +++ b/bin/lo-commit-stat @@ -243,7 +243,7 @@ sub print_summary_in_stat($$$$$$) # print piece title if not done yet if ( defined ${$ppiece_title} ) { - print $log, "${$ppiece_title}\n"; + print $log "${$ppiece_title}\n"; ${$ppiece_title} = undef; } |