From: Bruno Haible Date: Tue, 24 Oct 2006 13:39:13 +0000 (+0000) Subject: Fix syntax error. X-Git-Tag: 0.16.x-branchpoint~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5637c5e3a4efbc882383cd3cff40f4821e04f518;p=thirdparty%2Fgettext.git Fix syntax error. --- diff --git a/gettext-tools/src/ChangeLog b/gettext-tools/src/ChangeLog index 1cbeab2dd..b59dc90e0 100644 --- a/gettext-tools/src/ChangeLog +++ b/gettext-tools/src/ChangeLog @@ -1,3 +1,8 @@ +2006-10-24 Bruno Haible + + * msgmerge.c (struct definitions_ty): Remove semicolon after + gl_lock_define invocation. + 2006-10-21 Bruno Haible * po-error.h (po_error, po_error_at_line): Use format attribute only diff --git a/gettext-tools/src/msgmerge.c b/gettext-tools/src/msgmerge.c index ec4848fa4..cda1a2f55 100644 --- a/gettext-tools/src/msgmerge.c +++ b/gettext-tools/src/msgmerge.c @@ -619,7 +619,7 @@ struct definitions_ty message_fuzzy_index_ty *findex; /* A once-only execution guard for the initialization of the fuzzy index. Needed for OpenMP. */ - gl_lock_define(, findex_init_lock); + gl_lock_define(, findex_init_lock) /* The canonical encoding of the compendiums. */ const char *canon_charset; };