diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-03-11 23:57:01 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-03-11 23:57:01 (EDT) |
commit | bde30bbd5b3c0aa834edef261aeb02c63ef7e0a0 (patch) | |
tree | 890c60bf37bcdeabcfdb068294ffdcba9df8b7a7 /lib | |
parent | db0d2704293360c813ff68d4f314714864b4a7f5 (diff) |
ob_get_text_domain(): Replace echo with printf
Diffstat (limited to 'lib')
-rw-r--r-- | lib/locale.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/locale.sh b/lib/locale.sh index 49df666..6d0af51 100644 --- a/lib/locale.sh +++ b/lib/locale.sh @@ -33,7 +33,7 @@ ob_get_text_domain() return 125 fi - echo "${_ob_text_domain}" + printf '%s' "${_ob_text_domain}" return 0 } |