diff options
author | Jim Meyering <jim@meyering.net> | 1996-06-14 03:30:28 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-06-14 03:30:28 +0000 |
commit | 482f161a5c6b5f4f21493a84de70b1a8fecbb226 (patch) | |
tree | 8b00ebbb63d24811174158fdaa10176bfd35d811 /intl/libgettext.h | |
parent | 9b647bea250faf31f6e8d1a9cbe1dd362de73218 (diff) | |
download | idutils-482f161a5c6b5f4f21493a84de70b1a8fecbb226.tar.gz idutils-482f161a5c6b5f4f21493a84de70b1a8fecbb226.tar.bz2 idutils-482f161a5c6b5f4f21493a84de70b1a8fecbb226.zip |
merge with 0.10.18
Diffstat (limited to 'intl/libgettext.h')
-rw-r--r-- | intl/libgettext.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/intl/libgettext.h b/intl/libgettext.h index 05463ec..c9212aa 100644 --- a/intl/libgettext.h +++ b/intl/libgettext.h @@ -143,7 +143,7 @@ extern int _nl_msg_cat_cntr; # define dcgettext(Domainname, Msgid, Category) \ (__extension__ \ ({ \ - char *result; \ + char *__result; \ if (__builtin_constant_p (Msgid)) \ { \ static char *__translation__; \ @@ -154,11 +154,11 @@ extern int _nl_msg_cat_cntr; dcgettext__ ((Domainname), (Msgid), (Category)); \ __catalog_counter__ = _nl_msg_cat_cntr; \ } \ - result = __translation__; \ + __result = __translation__; \ } \ else \ - result = dcgettext__ ((Domainname), (Msgid), (Category)); \ - result; \ + __result = dcgettext__ ((Domainname), (Msgid), (Category)); \ + __result; \ })) # endif # endif |