From: Don Armstrong Date: Fri, 22 Apr 2016 15:06:10 +0000 (-0700) Subject: printf without an option is pointless and makes a warning X-Git-Url: https://git.donarmstrong.com/?p=debian-ctte.git;a=commitdiff_plain;h=69b03a2fb458258c97d8db4dfaacb2c8c88b9e83 printf without an option is pointless and makes a warning --- diff --git a/scripts/pocket-devotee b/scripts/pocket-devotee index e2e6678..e806ba0 100755 --- a/scripts/pocket-devotee +++ b/scripts/pocket-devotee @@ -285,7 +285,7 @@ EOF printf {$RESULTS} "Option %s ", $order_to_options{$row + 1}{key}; for my $col (0..($max_choices - 1)) { if ($row == $col) { - printf {$RESULTS} " ", $Beat_Matrix[$row][$col]; + print {$RESULTS} " "; } else { printf {$RESULTS} " % 4d ", $Beat_Matrix[$row][$col]; }