From 6516daea481dab323982d3a2b2aa8baf6988829a Mon Sep 17 00:00:00 2001 From: giraffedata Date: Wed, 24 Jul 2013 22:09:47 +0000 Subject: cleanup git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@1979 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- lib/libpamd.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/libpamd.c') diff --git a/lib/libpamd.c b/lib/libpamd.c index 0da818c1..77c7fc54 100644 --- a/lib/libpamd.c +++ b/lib/libpamd.c @@ -1014,12 +1014,12 @@ pamd_fill_drawproc(tuple ** const tuples, #ifndef LITERAL_FN_DEF_MATCH -static qsort_comparison_fn yx_compare; +static qsort_comparison_fn yxCompare; #endif static int -yx_compare(const void * const c1Arg, - const void * const c2Arg) { +yxCompare(const void * const c1Arg, + const void * const c2Arg) { const coord * const c1P = c1Arg; const coord * const c2P = c2Arg; @@ -1082,7 +1082,7 @@ pamd_fill(tuple ** const tuples, pamd_setlineclip(oldclip); /* Sort the coords by Y, secondarily by X. */ - qsort((char*) fh->coords, fh->n, sizeof(coord), yx_compare); + qsort((char*) fh->coords, fh->n, sizeof(coord), yxCompare); /* Find equal coords with different edge numbers, and swap if necessary. */ edge = -1; -- cgit 1.4.1