1
0
mirror of https://github.com/php/php-src.git synced 2026-04-23 16:08:35 +02:00

Remove unused variable

This commit is contained in:
Pierrick Charron
2011-08-09 02:37:02 +00:00
parent 177645fd05
commit 5998f27321
+1 -2
View File
@@ -198,7 +198,6 @@ static size_t strnlen(const char *s, size_t maxlen) {
static void xbuf_format_converter(smart_str *xbuf, const char *fmt, va_list ap) /* {{{ */
{
char *s = NULL;
char *q;
int s_len, free_zcopy;
zval *zvp, zcopy;
@@ -679,7 +678,7 @@ static void xbuf_format_converter(smart_str *xbuf, 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;