]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Fix #if mistake that led to uninitialized variable.
authorBruno Haible <bruno@clisp.org>
Thu, 1 Nov 2001 11:49:23 +0000 (11:49 +0000)
committerBruno Haible <bruno@clisp.org>
Sun, 21 Jun 2009 20:48:46 +0000 (22:48 +0200)
src/ChangeLog
src/msgfmt.c

index a561b03d9995c5c7c00edfcb57d9e1798de8b0d3..08b13cd212e3235ed5673aaf3e3094d086df9562 100644 (file)
@@ -1,3 +1,7 @@
+2001-11-01  Bruno Haible  <haible@clisp.cons.org>
+
+       * msgfmt.c (check_plural_eval): Fix #if mistake.
+
 2001-11-01  Bruno Haible  <haible@clisp.cons.org>
 
        * msgl-iconv.h (iconv_message_list): Add argument 'canon_from_code'.
index d20746f482db816cdcb2c9fb31edc92f6239e290..fdedeca4a8c070fdaf40e96b8aa4d34f596ea924 100644 (file)
@@ -720,8 +720,8 @@ check_plural_eval (plural_expr, nplurals_value, header_pos)
          break;
 # endif
        default:
-         msg = _("plural expression can produce arithmetic exceptions, possibly division by zero");
 #endif
+         msg = _("plural expression can produce arithmetic exceptions, possibly division by zero");
        }
 
       error_with_progname = false;