summaryrefslogtreecommitdiff
path: root/pp_sort.c
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-01-06 15:49:39 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-01-06 15:49:39 +0000
commita80036c632e9a590837ce173395af69d6c7c2ed5 (patch)
tree4230402dbcbf360650111689845e2bedff49fdcb /pp_sort.c
parente24631be6ac297b562086a055de17c5bd4247797 (diff)
downloadperl-a80036c632e9a590837ce173395af69d6c7c2ed5.tar.gz
Silence a compilation warning
p4raw-id: //depot/perl@23761
Diffstat (limited to 'pp_sort.c')
-rw-r--r--pp_sort.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_sort.c b/pp_sort.c
index 0cb4795ea6..69814aebbc 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 */