Use "%u" format modifier instead of "%d" as line_t is unsigned. Type line_t
is of U32 type and therefore casting it to unsigned int is safe on most
platforms.
seen_nextstate++;
retop = op_append_list(OP_LIST, retop, newSVOP(OP_CONST, 0,
/* newSVpvf("nextstate:%s:%d", CopFILE(cCOPx(kid)), cCOPx(kid)->cop_line))); */
- newSVpvf("nextstate:%d", cCOPx(kid)->cop_line)));
+ newSVpvf("nextstate:%u", (unsigned int)cCOPx(kid)->cop_line)));
break;
case OP_ARGCHECK: {
UNOP_AUX_item *aux = cUNOP_AUXx(kid)->op_aux;