summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-07-12 14:10:13 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-07-12 14:10:32 (EDT)
commit87eb2fc8eda00a83bb057ee1ab9649a9a6d68627 (patch)
tree3142d9719828f3f59abc899863a2e781c5914a15
parenta3afa98fa19677de77673416998ac0d55142f5a0 (diff)
Use new output functions.
-rw-r--r--lib/cmd.sh2
-rw-r--r--lib/locale.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/cmd.sh b/lib/cmd.sh
index 3f32d7a..4a03664 100644
--- a/lib/cmd.sh
+++ b/lib/cmd.sh
@@ -104,6 +104,6 @@ run_cmd()
if is_cmd "${cmd}"; then
"cmd_${cmd}_main" "${@}"
else
- printf 'Command "%s" not found\n' "${cmd}"
+ error 1 'Command "%s" not found' "${cmd}"
fi
}
diff --git a/lib/locale.sh b/lib/locale.sh
index 33245aa..9b9ccbe 100644
--- a/lib/locale.sh
+++ b/lib/locale.sh
@@ -42,7 +42,7 @@ load_locale()
if ! _try_load_locale "${LC_MESSAGES%.*}"; then
if ! _try_load_locale "${LC_MESSAGES%_*}"; then
if ! _try_load_locale "${DEFAULT_LOCALE}"; then
- printf 'Cannot load locale' >&2
+ warn 'Cannot load locale'
return 1
fi
fi