diff options
author | David Mitchell <davem@iabyn.com> | 2010-09-01 12:52:32 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2010-09-01 12:52:32 +0100 |
commit | c895a371d39dea7f20c053ad6dd1ef63feec4bcb (patch) | |
tree | 029f90995ef72261ba42cbb248e2a7e7a8394dff /sv.h | |
parent | 00ab59c97654127a1c2030c6a43ca89059e64ac6 (diff) | |
download | perl-c895a371d39dea7f20c053ad6dd1ef63feec4bcb.tar.gz |
fix some 64-bit casts under DEBUG_LEAKING_SCALARS
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -117,7 +117,7 @@ struct STRUCT_SV { /* struct sv { */ PERL_BITFIELD32 sv_debug_optype:9; /* the type of OP that allocated us */ PERL_BITFIELD32 sv_debug_inpad:1; /* was allocated in a pad for an OP */ PERL_BITFIELD32 sv_debug_line:16; /* the line where we were allocated */ - U32 sv_debug_serial; /* serial number of sv allocation */ + UV sv_debug_serial; /* serial number of sv allocation */ char * sv_debug_file; /* the file where we were allocated */ SV * sv_debug_parent; /* what we were cloned from (ithreads)*/ #endif |