[print_cue_breaklist] Fixed misnamed function

This commit is contained in:
ayakael 2018-05-18 13:55:32 -07:00
parent 28f4c230f5
commit 39455e0083
No known key found for this signature in database
GPG key ID: 575626A4AE5F4026

View file

@ -8,7 +8,7 @@
# USAGE
# print_cue_breaklist <file_1> [<...>]
#
# DEPENDENCIES src/sec2min
# DEPENDENCIES src/print_sec_to_min
#
# }
@ -28,7 +28,7 @@ print_cue_breaklist() {
local COUNT=$(( ${COUNT} + 1 ))
done
local breaksecList=($(printf "%s\n" ${breaksecList[@]} | sed 's|\..*||g'))
local breakList=($(sec2min ${breaksecList[@]}))
local breakList=($(print_sec_to_min ${breaksecList[@]}))
fi
printf '%s\n' ${breakList[@]}
}