mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
Remove unused variable
This commit is contained in:
parent
cb1cd0b3ab
commit
97ac5d3f53
@ -587,7 +587,6 @@ static int format_converter(register buffy * odp, const char *fmt, va_list ap) /
|
||||
int i;
|
||||
|
||||
char *s = NULL;
|
||||
char *q;
|
||||
int s_len, free_zcopy;
|
||||
zval *zvp, zcopy;
|
||||
|
||||
@ -1071,7 +1070,7 @@ static int format_converter(register buffy * odp, const char *fmt, va_list ap) /
|
||||
|
||||
s_len = strlen(s);
|
||||
|
||||
if (alternate_form && (q = strchr(s, '.')) == NULL) {
|
||||
if (alternate_form && (strchr(s, '.')) == NULL) {
|
||||
s[s_len++] = '.';
|
||||
}
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user