From: Martin Mares Date: Sun, 29 May 2005 09:20:45 +0000 (+0000) Subject: Another work-around for spurious warnings. X-Git-Tag: holmes-import~775 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=7490dc318191ad60efcb34e4a7eef14efdd141aa;p=libucw.git Another work-around for spurious warnings. --- diff --git a/lib/sorter.h b/lib/sorter.h index 3d31b656..15ff9bf7 100644 --- a/lib/sorter.h +++ b/lib/sorter.h @@ -279,7 +279,7 @@ P(presort)(struct fastbuf **fb1, struct fastbuf **fb2) struct fastbuf *tbuf; uns buf_items = sorter_presort_bufsize / sizeof(SORT_KEY); uns run_count = 0; - SORT_KEY last_out, *array; + SORT_KEY last_out = { }, *array; ASSERT(!*fb2); if (buf_items < 2)