Remove unused variable

This commit is contained in:
Pierrick Charron 2011-08-09 02:42:25 +00:00
parent cb1cd0b3ab
commit 97ac5d3f53

View File

@ -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;