shellcheck
This commit is contained in:
parent
f4ee63aab7
commit
55051830ac
1 changed files with 2 additions and 2 deletions
|
@ -867,8 +867,8 @@ spcd_error_os() {
|
||||||
|
|
||||||
spcd_fill() {
|
spcd_fill() {
|
||||||
spcd_fill__index=${1}
|
spcd_fill__index=${1}
|
||||||
while [ ${spcd_fill__index} -gt 0 ]; do
|
while [ "${spcd_fill__index}" -gt 0 ]; do
|
||||||
printf "${2}"
|
printf "%s" "${2}"
|
||||||
spcd_fill__index=$((spcd_fill__index - 1))
|
spcd_fill__index=$((spcd_fill__index - 1))
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue