Skip to content

Commit f35d982

Browse files
committed
Drop useless cast
1 parent cec6220 commit f35d982

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/mbstring/mb_gpc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ MBSTRING_API SAPI_TREAT_DATA_FUNC(mbstr_treat_data)
100100
case PARSE_POST:
101101
case PARSE_GET:
102102
case PARSE_STRING:
103-
separator = (char *) estrndup(ZSTR_VAL(PG(arg_separator).input), ZSTR_LEN(PG(arg_separator).input));
103+
separator = estrndup(ZSTR_VAL(PG(arg_separator).input), ZSTR_LEN(PG(arg_separator).input));
104104
break;
105105
case PARSE_COOKIE:
106106
separator = ";\0";

0 commit comments

Comments
 (0)