diff options
author | Abhijit Menon-Sen <ams@wiw.org> | 2005-05-23 16:34:16 +0000 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2005-05-23 16:34:16 +0000 |
commit | d5748a18f65fc6a32038bbde36983f9fd709d1a0 (patch) | |
tree | 8893610eca8b2a7f26e009a9f0c8cc7aca724ea1 /ext/Storable/Storable.xs | |
parent | 81770b0cc0ed763d048a9cb4877bc8e70bb815fa (diff) | |
download | perl-d5748a18f65fc6a32038bbde36983f9fd709d1a0.tar.gz |
Remove one const to ensure that the universe doesn't tip over.
(At least on AIX.)
p4raw-id: //depot/perl@24555
Diffstat (limited to 'ext/Storable/Storable.xs')
-rw-r--r-- | ext/Storable/Storable.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Storable/Storable.xs b/ext/Storable/Storable.xs index 53f9543798..b4ff829513 100644 --- a/ext/Storable/Storable.xs +++ b/ext/Storable/Storable.xs @@ -1075,7 +1075,7 @@ static int store_blessed(pTHX_ stcxt_t *cxt, SV *sv, int type, HV *pkg); typedef int (*sv_store_t)(pTHX_ stcxt_t *cxt, SV *sv); -static const sv_store_t sv_store[] = { +static sv_store_t sv_store[] = { (sv_store_t)store_ref, /* svis_REF */ (sv_store_t)store_scalar, /* svis_SCALAR */ (sv_store_t)store_array, /* svis_ARRAY */ |