summaryrefslogtreecommitdiff
path: root/ext/unicode/transform.c
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-07-13 12:15:01 +0000
committerAntony Dovgal <tony2001@php.net>2006-07-13 12:15:01 +0000
commit8376cd2396fcd3277984454d63b0c13ad852f5a9 (patch)
tree2b656b88748f7e5491c0df753f7ff7f06cd27eee /ext/unicode/transform.c
parent12f44c2b2b33f714e183d8a734219a647ed29a0c (diff)
downloadphp-git-8376cd2396fcd3277984454d63b0c13ad852f5a9.tar.gz
nuke unused variable
Diffstat (limited to 'ext/unicode/transform.c')
-rw-r--r--ext/unicode/transform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/unicode/transform.c b/ext/unicode/transform.c
index 8f7e0f6879..4f9f5cd68c 100644
--- a/ext/unicode/transform.c
+++ b/ext/unicode/transform.c
@@ -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,