glib/gqsort.c: Fix C99ism/GCCism
authorChun-wei Fan <fanchunwei@src.gnome.org>
Tue, 20 Mar 2012 05:19:11 +0000 (13:19 +0800)
committerMatthias Clasen <mclasen@redhat.com>
Wed, 21 Mar 2012 02:29:50 +0000 (22:29 -0400)
commitb08b3012235b089cc3c8d015c47f703da01a4d81
tree571d17fa426d830f68bed17106b7c1dfa6616b04
parentf23e7c3ef988a251c42a8a8f7e60566e0bab76fb
glib/gqsort.c: Fix C99ism/GCCism

-There were a number of variables that were declared in the middle of
 the block, so move these declarations to the start of the block
-There was a use of mempcpy, but it is a GCC extension, so use memcpy since
 we didn't care about the return value of the call to mempcpy.

https://bugzilla.gnome.org/show_bug.cgi?id=672095
glib/gqsort.c