From: Rafael Garcia-Suarez Date: Thu, 6 Jan 2005 15:49:39 +0000 (+0000) Subject: Silence a compilation warning X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a80036c632e9a590837ce173395af69d6c7c2ed5;p=p5sagit%2Fp5-mst-13.2.git Silence a compilation warning p4raw-id: //depot/perl@23761 --- diff --git a/pp_sort.c b/pp_sort.c index 0cb4795..69814ae 100644 --- a/pp_sort.c +++ b/pp_sort.c @@ -365,7 +365,7 @@ S_mergesortsv(pTHX_ gptr *base, size_t nmemb, SVCOMPARE_t cmp, U32 flags) gptr small[SMALLSORT]; gptr *which[3]; off_runs stack[60], *stackp; - SVCOMPARE_t savecmp; + SVCOMPARE_t savecmp = 0; if (nmemb <= 1) return; /* sorted trivially */