Fix whitespace

This commit is contained in:
Tim Hockin 2025-05-01 17:24:12 -07:00
parent 110bffbe1f
commit bd88a3f9b0
No known key found for this signature in database
1 changed files with 49 additions and 50 deletions

View File

@ -24,8 +24,7 @@ function caller() {
stack_skip=$((stack_skip + 1))
if [[ ${#FUNCNAME[@]} -gt ${stack_skip} ]]; then
local i
for ((i=1 ; i <= ${#FUNCNAME[@]} - stack_skip ; i++))
do
for ((i=1 ; i <= ${#FUNCNAME[@]} - stack_skip ; i++)); do
local frame_no=$((i - 1 + stack_skip))
local source_lineno=${BASH_LINENO[$((frame_no - 1))]}
local funcname=${FUNCNAME[${frame_no}]}