diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-10-15 13:40:20 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-10-15 13:40:20 +0000 |
commit | 3d7a97b7fa30a625b9fe2c67d227f0694f17108a (patch) | |
tree | 00c61536b810acdba3c9f7df18cf4767449a65f1 /ext/DB_File | |
parent | 1f137b8aa25f50bde68badea2080f0af72719ed2 (diff) | |
download | perl-3d7a97b7fa30a625b9fe2c67d227f0694f17108a.tar.gz |
Casting tweak from Paul Marquess, helps Merijn on AIX.
p4raw-id: //depot/perl@12443
Diffstat (limited to 'ext/DB_File')
-rw-r--r-- | ext/DB_File/DB_File.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/DB_File/DB_File.xs b/ext/DB_File/DB_File.xs index d2dc572aba..db4382be8f 100644 --- a/ext/DB_File/DB_File.xs +++ b/ext/DB_File/DB_File.xs @@ -1253,7 +1253,7 @@ SV * sv ; svp = hv_fetch(action, "flags", 5, FALSE); if (svp) - (void)dbp->set_flags(dbp, SvIV(*svp)) ; + (void)dbp->set_flags(dbp, (u_int32_t)SvIV(*svp)) ; svp = hv_fetch(action, "cachesize", 9, FALSE); if (svp) |