nuke unused variable

This commit is contained in:
Antony Dovgal 2006-07-13 12:15:01 +00:00
parent 12f44c2b2b
commit 8376cd2396

View file

@ -28,7 +28,7 @@ PHP_FUNCTION(str_transliterate)
int result_len = 0;
UTransliterator *trans = NULL;
UErrorCode status = U_ZERO_ERROR;
int32_t capacity, start, limit;
int32_t capacity, limit;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "uuu|u", &str,
&str_len, &from, &from_len, &to, &to_len,