From cb45176110a85c3e8228499edb2ce36da85f3670 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 19 Mar 2012 13:26:19 -0400 Subject: [PATCH] Fix a C99ism --- glib/gqsort.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/glib/gqsort.c b/glib/gqsort.c index 6e1b225..b7ad041 100644 --- a/glib/gqsort.c +++ b/glib/gqsort.c @@ -71,6 +71,10 @@ msort_with_tmp (const struct msort_param *p, void *b, size_t n) { char *b1, *b2; size_t n1, n2; + char *tmp = p->t; + const size_t s = p->s; + GCompareDataFunc cmp = p->cmp; + void *arg = p->arg; if (n <= 1) return; @@ -83,10 +87,6 @@ msort_with_tmp (const struct msort_param *p, void *b, size_t n) msort_with_tmp (p, b1, n1); msort_with_tmp (p, b2, n2); - char *tmp = p->t; - const size_t s = p->s; - GCompareDataFunc cmp = p->cmp; - void *arg = p->arg; switch (p->var) { case 0: -- 2.7.4