From: Vincent Pit Date: Fri, 31 Jul 2015 17:17:58 +0000 (-0300) Subject: Correct a copypasted comment X-Git-Tag: v0.17~11 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fautovivification.git;a=commitdiff_plain;h=8d9345090435042bec6d09effccbe31421837803 Correct a copypasted comment --- diff --git a/autovivification.xs b/autovivification.xs index 828ea9a..7a175eb 100644 --- a/autovivification.xs +++ b/autovivification.xs @@ -157,9 +157,9 @@ static SV *a_vivify_ref(pTHX_ SV *sv, int to_hash) { # define A_CHECK_LOCK OP_REFCNT_LOCK # define A_CHECK_UNLOCK OP_REFCNT_UNLOCK #else -/* Before perl 5.9.3, indirect_ck_*() calls are already protected by the - * A_LOADED mutex, which falls back to the OP_REFCNT mutex. Make sure we don't - * lock it twice. */ +/* Before perl 5.9.3, a_ck_*() calls are already protected by the A_LOADED + * mutex, which falls back to the OP_REFCNT mutex. Make sure we don't lock it + * twice. */ # define A_CHECK_LOCK NOOP # define A_CHECK_UNLOCK NOOP #endif