diff options
author | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1998-04-02 16:32:53 +0000 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1998-04-02 16:32:53 +0000 |
commit | dd2664b98e49a1f71c697cd15eefde9a5b96fced (patch) | |
tree | 919498fe05c45f80cc5b1bfbf9fc98461d6c52e7 /ext | |
parent | 7dc91cf4a8a3d5d0785383600593c9530ead47f9 (diff) | |
download | perl-dd2664b98e49a1f71c697cd15eefde9a5b96fced.tar.gz |
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
Diffstat (limited to 'ext')
-rw-r--r-- | ext/SDBM_File/sdbm/sdbm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/SDBM_File/sdbm/sdbm.h b/ext/SDBM_File/sdbm/sdbm.h index 591ff24799..0747b74dfa 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 ; |