diff --git a/cpan/Digest-MD5/MD5.xs b/cpan/Digest-MD5/MD5.xs index acefc30711e..c02a08210d2 100644 --- a/cpan/Digest-MD5/MD5.xs +++ b/cpan/Digest-MD5/MD5.xs @@ -156,7 +156,7 @@ STATIC int dup_md5_ctx(pTHX_ MAGIC *mg, CLONE_PARAMS *params) #endif #if defined(MGf_DUP) && defined(USE_ITHREADS) -const STATIC MGVTBL vtbl_md5 = { +STATIC const MGVTBL vtbl_md5 = { NULL, /* get */ NULL, /* set */ NULL, /* len */ @@ -168,7 +168,7 @@ const STATIC MGVTBL vtbl_md5 = { }; #else /* declare as 5 member, not normal 8 to save image space*/ -const STATIC struct { +STATIC const struct { int (*svt_get)(SV* sv, MAGIC* mg); int (*svt_set)(SV* sv, MAGIC* mg); U32 (*svt_len)(SV* sv, MAGIC* mg);