summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-03-17 06:21:10 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-03-17 06:21:10 (EDT)
commit83606572e054cab96efbc25e6578bfd3ca455376 (patch)
tree2d205c32a67807c4366d914427a2e472bf55691a /lib
parent2b4f6a05813c8ea48e195f0665bd3b38f4cfdf0b (diff)
ob_error(), ob_warn(), ob_info(): Fix _ob_get_msg() calls
Diffstat (limited to 'lib')
-rw-r--r--lib/output.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/output.sh b/lib/output.sh
index 9e8834c..b25fe6f 100644
--- a/lib/output.sh
+++ b/lib/output.sh
@@ -32,7 +32,7 @@ ob_error()
local format="${1}"
shift 1 || _ob_abort
- printf "$(_get_msg 'output_error_format')\n" "${0##*/}" "${@}" >&2
+ printf "$(_ob_get_msg 'output_error_format')\n" "${0##*/}" "${@}" >&2
return 0
}
@@ -52,7 +52,7 @@ ob_warn()
local format="${1}"
shift 1 || _ob_abort
- printf "$(_get_msg 'output_warning_format')\n" "${0##*/}" "${@}" >&2
+ printf "$(_ob_get_msg 'output_warning_format')\n" "${0##*/}" "${@}" >&2
return 0
}
@@ -71,7 +71,7 @@ ob_info()
local format="${1}"
shift 1 || _ob_abort
- printf "$(_get_msg 'output_info_format')\n" "${0##*/}" "${@}" >&2
+ printf "$(_ob_get_msg 'output_info_format')\n" "${0##*/}" "${@}" >&2
return 0
}