sculpt_image.run: fix var name in assert_run_arg

This commit is contained in:
Norman Feske 2023-03-13 11:22:06 +01:00 committed by Christian Helmuth
parent b609411e76
commit dc8fcc254d

View File

@ -23,7 +23,7 @@ proc assert_include { include } {
proc assert_run_arg { arg_name } {
global argv
if {[lsearch $argv $arg_name] == -1} {
puts stderr "missing run-tool argument: $arg"
puts stderr "missing run-tool argument: $arg_name"
exit 1
}
}