From 9d6ed46863b6f6cb1924dd28e766c80da2d3969a Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sun, 23 Sep 2018 10:30:47 -0600 Subject: [PATCH] regcomp.c: Fix typo in debug stmt The name of the function was misspelled. --- regcomp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regcomp.c b/regcomp.c index 4cc76fa..b303c62 100644 --- a/regcomp.c +++ b/regcomp.c @@ -19282,7 +19282,7 @@ S_reginsert(pTHX_ RExC_state_t *pRExC_state, U8 op, regnode *operand, U32 depth) if (RExC_offsets) { /* MJD 20010112 */ MJD_OFFSET_DEBUG( ("%s(%d): (op %s) %s copy %" UVuf " -> %" UVuf " (max %" UVuf ").\n", - "reg_insert", + "reginsert", __LINE__, PL_reg_name[op], (UV)(dst - RExC_emit_start) > RExC_offsets[0] -- 1.8.3.1