summaryrefslogtreecommitdiffstats
path: root/intl
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2001-01-08 16:57:20 +0000
committerThomas Roessler <roessler@does-not-exist.org>2001-01-08 16:57:20 +0000
commitd5a336245304225932d3b5d18f82336bebb01efe (patch)
treead754228c008f9b1a3dc0ff8b60efe1d326c1927 /intl
parent0fc518a9da9ec8af36af17fbcb305cd6abd5d50e (diff)
Fix and/or check more fishy code.
Diffstat (limited to 'intl')
-rw-r--r--intl/cat-compat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/intl/cat-compat.c b/intl/cat-compat.c
index 7a25fcfd..c32f6669 100644
--- a/intl/cat-compat.c
+++ b/intl/cat-compat.c
@@ -115,8 +115,8 @@ textdomain (domainname)
if (new_catalog == (nl_catd) -1)
{
/* NLSPATH search didn't work, try absolute path */
- sprintf (new_name, "%s/%s/LC_MESSAGES/%s.cat", LOCALEDIR, lang,
- PACKAGE); /* __SPRINTF_CHECKED__ - sort of... */
+ sprintf (new_name, "%s/%s/LC_MESSAGES/%s.cat", LOCALEDIR, lang, /* __SPRINTF_CHECKED__ - sort of... */
+ PACKAGE);
new_catalog = catopen (new_name, 0);
if (new_catalog == (nl_catd) -1)