From d5748a18f65fc6a32038bbde36983f9fd709d1a0 Mon Sep 17 00:00:00 2001 From: Abhijit Menon-Sen Date: Mon, 23 May 2005 16:34:16 +0000 Subject: [PATCH] Remove one const to ensure that the universe doesn't tip over. (At least on AIX.) p4raw-id: //depot/perl@24555 --- ext/Storable/Storable.xs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 1.8.3.1