From 69b03a2fb458258c97d8db4dfaacb2c8c88b9e83 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Fri, 22 Apr 2016 08:06:10 -0700 Subject: [PATCH] printf without an option is pointless and makes a warning --- scripts/pocket-devotee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; } -- 2.39.5