diff options
author | P. J. McDermott <pjm@nac.net> | 2013-08-18 12:17:52 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-08-18 12:17:52 (EDT) |
commit | 3b66a51aed3ea25f11b356936afac742612ce212 (patch) | |
tree | b147e7bada9718de987e639416d722ec698abd73 /lib | |
parent | b6d7f72d6edb19f2afd5ccf1816e2c7732d3803a (diff) |
_ob_parse_control_error(): Drop quotes around int.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/control.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/control.sh b/lib/control.sh index ed5fa19..ae9db28 100644 --- a/lib/control.sh +++ b/lib/control.sh @@ -255,7 +255,7 @@ _ob_parse_control_error() msg_id="${3}" shift 3 - if [ "${line_nr}" -eq 0 ]; then + if [ ${line_nr} -eq 0 ]; then file_info="$(printf '%20s:' "${file}")" else file_info="$(printf '%20s(l%d):' "${file}" "${line_nr}")" |