From 4e528812291825e541d225bcf2bffac0cf23be3d Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sat, 17 Oct 2020 06:00:22 -0600 Subject: Cast parameters to instr, strstr This code isn't apparently compiled on modern platforms, as when I tried to force them to compile, I had to do this. --- mathoms.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mathoms.c') diff --git a/mathoms.c b/mathoms.c index b490049d09..19b0154b64 100644 --- a/mathoms.c +++ b/mathoms.c @@ -1294,7 +1294,7 @@ Perl_instr(const char *big, const char *little) { PERL_ARGS_ASSERT_INSTR; - return instr((char *) big, (char *) little); + return instr(big, little); } SV * -- cgit v1.2.1