From: Abhijit Menon-Sen Date: Mon, 23 May 2005 16:34:16 +0000 (+0000) Subject: Remove one const to ensure that the universe doesn't tip over. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d5748a18f65fc6a32038bbde36983f9fd709d1a0;p=p5sagit%2Fp5-mst-13.2.git Remove one const to ensure that the universe doesn't tip over. (At least on AIX.) p4raw-id: //depot/perl@24555 --- diff --git a/ext/Storable/Storable.xs b/ext/Storable/Storable.xs index 53f9543..b4ff829 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 */