diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-23 15:24:49 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-23 15:24:49 (EDT) |
commit | 6856a71d0b056d5a2169ab121c5396a78f068aae (patch) | |
tree | fcdfff7a06efa7dd69eb4ea30457f22aee9e3f52 /lib | |
parent | b1f2e76097e8026f57bc3cf048b0354631fe1a63 (diff) |
_ob_parse_control_error(): Make arg vars local
Diffstat (limited to 'lib')
-rw-r--r-- | lib/control.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/control.sh b/lib/control.sh index d8d9bd2..c7a8010 100644 --- a/lib/control.sh +++ b/lib/control.sh @@ -30,9 +30,9 @@ _OB_SUBSTVAR_TRIM_SED=' _ob_parse_control_error() { - file="${1}" - line_nr="${2}" - msg_id="${3}" + local file="${1}" + local line_nr="${2}" + local msg_id="${3}" shift 3 || _ob_abort local file_info= |