GNOME Bugzilla – Bug 329459
pango-utils.c,pangocairo-font.c: illegal structure declaration
Last modified: 2006-02-01 16:19:31 UTC
Please describe the problem: These are syntex error in pango/pango-utils.c and pango/pangocairo-font.c. Steps to reproduce: 1. compile pango-utils.c and pangocairo-font.c Actual results: following messages are displayed. (Visual C++ 6.0) pango-utils.c(61) : error C2059: syntax error : '}' pangocairo-font.c(29) : error C2059: syntax error : '}' Expected results: pango-utils.c -PangoWarningHistory _pango_warning_history = {}; +PangoWarningHistory _pango_warning_history; pangocairo-font.c -PangoCairoWarningHistory _pango_cairo_warning_history = {}; +PangoCairoWarningHistory _pango_cairo_warning_history; Does this happen every time? every time Other information:
I'm not quite sure why these are invalid. Anyway, I filled them in, so they should not be a problem anymore. 2006-02-01 Behdad Esfahbod <behdad@gnome.org> * pango/pango-utils.c, pango/pangocairo-font.c: Initialize warning history structs more explicitly. (bug #329459)