From 9cdf4efdf7edab0a14edf8175f6115a3c49e165d Mon Sep 17 00:00:00 2001 From: David Mitchell Date: Fri, 19 Dec 2014 16:09:19 +0000 Subject: [PATCH] B.xs: remove redundant assignment Follow-up to 500f40f555ee. --- ext/B/B.xs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/B/B.xs b/ext/B/B.xs index 90bf8d5..52713fb 100644 --- a/ext/B/B.xs +++ b/ext/B/B.xs @@ -1383,7 +1383,7 @@ aux_list(o, cv) bool is_hash = FALSE; #ifdef USE_ITHREADS PADLIST * const padlist = CvPADLIST(cv); - PAD *comppad = comppad = PadlistARRAY(padlist)[1]; + PAD *comppad = PadlistARRAY(padlist)[1]; #endif EXTEND(SP, len); -- 1.8.3.1