From b33df119cd5e3a670686ee326f2871e768d49e60 Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Mon, 11 Jul 2011 13:25:35 -0700 Subject: [PATCH] Storable: Restore 5.6 compatibility --- dist/Storable/Storable.xs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/Storable/Storable.xs b/dist/Storable/Storable.xs index 5ad1556..8ce0bec 100644 --- a/dist/Storable/Storable.xs +++ b/dist/Storable/Storable.xs @@ -2294,7 +2294,7 @@ static int store_hash(pTHX_ stcxt_t *cxt, HV *hv) #ifdef HAS_RESTRICTED_HASHES HvTOTALKEYS(hv); #else - HvUSEDKEYS(hv); + HvKEYS(hv); /* Not HvUSEDKEYS, as 5.6 lacketh it */ #endif I32 i; int ret = 0; -- 2.7.4