2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-05-29 00:10:54 +00:00

Useless use of a constant in void context

Remove an extraneous newline to avoid useless constant warning.
This commit is contained in:
Thorsten Schöning 2015-11-19 20:50:37 +01:00 committed by Jay Berkenbilt
parent b7302a9b72
commit 8ae7001729

View File

@ -386,7 +386,8 @@ sub report
push(@vals, map { $rep->{+__PACKAGE__}{$_} } ($f_passes, $f_fails, push(@vals, map { $rep->{+__PACKAGE__}{$_} } ($f_passes, $f_fails,
$f_xpasses, $f_xfails)); $f_xpasses, $f_xfails));
my $socket = $rep->_socket(); my $socket = $rep->_socket();
$socket->print(join(' ', @vals)), "\n"; $socket->print(join(' ', @vals));
$socket->flush();
} }
# Usage: notify(string) # Usage: notify(string)