diff options
author | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-30 05:33:17 +0000 |
---|---|---|
committer | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-30 05:33:17 +0000 |
commit | 557cafcc70a75a226fd001d24215d04eab7e8efa (patch) | |
tree | 3a67e254988876bd5f515ce970f69865aafc9330 /tools | |
parent | f8cc725e0ea36803095a74d921f73b36e2e6112b (diff) |
Fix logger.pl script to avoid spurious empty line in some cases.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2420 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'tools')
-rw-r--r-- | tools/logger.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/logger.pl b/tools/logger.pl index 3256bdcf..fb38f067 100644 --- a/tools/logger.pl +++ b/tools/logger.pl @@ -37,4 +37,4 @@ while (<STDIN>) print STDERR "\n" unless ++$c % $C; } -print STDERR "\n" +print STDERR "\n" if $c; |