diff options
author | Jonas Smedegaard <dr@jones.dk> | 2017-05-07 00:37:12 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2017-05-07 00:37:12 +0200 |
commit | 20d6f32da1b863cfdbd418b3cd5321a74b1f3db4 (patch) | |
tree | 63df6c824be5560b4e7c81654a827f24f352255c /bin | |
parent | b77ca256d6bf3367a2c4d8627dbaa318949437b7 (diff) |
Tidy function printf_each: Use generic variable name.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/stream | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -98,8 +98,8 @@ VCODECCOUNT= # shellcheck disable=SC2048,SC2059 printf_each() { skel=$1; shift - for height in $*; do - printf "$skel" "$height" + for string in $*; do + printf "$skel" "$string" done } |