diff options
-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 } |