GNOME Bugzilla – Bug 669511
gtkcsstypes.c: variable is declared at middle of block
Last modified: 2012-02-08 12:30:04 UTC
Created attachment 206939 [details] [review] patch for gtk/gtkcsstypes.c A variable is declared at the middle of the block. Old compiler will occur error, because of C99ism. The declaration should be moved to the top of the block.
The following fix has been pushed: c2512d1 Avoid a C99ism
Created attachment 207093 [details] [review] Avoid a C99ism Move variable declarations to the beginning of the block.