--- src/gettext.h.ori 2016-05-16 00:54:07.142331153 +0200 +++ src/gettext.h 2016-05-16 00:54:41.138034910 +0200 @@ -163,7 +163,6 @@ #if _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS char msg_ctxt_id[msgctxt_len + msgid_len]; #else - int translation_found; char buf[1024]; char *msg_ctxt_id = (msgctxt_len + msgid_len <= sizeof(buf) @@ -177,7 +176,7 @@ memcpy(msg_ctxt_id + msgctxt_len, msgid, msgid_len); translation = dngettext(domain, msg_ctxt_id, msgid_plural, n); /* Test must occur before msg_ctxt_id freed */ - translation_found = !(translation == msg_ctxt_id || translation == msgid_plural); + int translation_found = !(translation == msg_ctxt_id || translation == msgid_plural); #if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS if (msg_ctxt_id != buf) { free(msg_ctxt_id);