From: Malcolm Beattie Date: Thu, 2 Apr 1998 16:32:53 +0000 (+0000) Subject: Change 854 added { NULL, 0 } to sdbm.h which needs to be {0, 0} X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=dd2664b98e49a1f71c697cd15eefde9a5b96fced;p=p5sagit%2Fp5-mst-13.2.git Change 854 added { NULL, 0 } to sdbm.h which needs to be {0, 0} since appropriate headers aren't included. p4raw-id: //depot/perl@861 --- diff --git a/ext/SDBM_File/sdbm/sdbm.h b/ext/SDBM_File/sdbm/sdbm.h index 591ff24..0747b74 100644 --- a/ext/SDBM_File/sdbm/sdbm.h +++ b/ext/SDBM_File/sdbm/sdbm.h @@ -53,7 +53,7 @@ typedef struct { EXTCONST datum nullitem #ifdef DOINIT - = {NULL, 0} + = {0, 0} #endif ;