From: Fuji, Goro Date: Tue, 5 Oct 2010 10:25:11 +0000 (+0900) Subject: Fix a mis-use of [ap]THX_ (thanks to Vincent Pit) X-Git-Tag: 0.79~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=48a4a7b4b110db566e37945f215c463736dfa975 Fix a mis-use of [ap]THX_ (thanks to Vincent Pit) --- diff --git a/xs-src/Mouse.xs b/xs-src/Mouse.xs index 16db0c4..32ab97c 100644 --- a/xs-src/Mouse.xs +++ b/xs-src/Mouse.xs @@ -184,7 +184,7 @@ mouse_get_xc_wo_check(pTHX_ SV* const metaclass) { } static int -mouse_xc_is_fresh(aTHX_ AV* const xc) { +mouse_xc_is_fresh(pTHX_ AV* const xc) { HV* const stash = MOUSE_xc_stash(xc); SV* const gen = MOUSE_xc_gen(xc); if(SvUVX(gen) != 0U && MOUSE_xc_flags(xc) & MOUSEf_XC_IS_IMMUTABLE) {