summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael M Slusarz <slusarz@curecanti.org>2013-03-18 12:03:11 -0600
committerStanislav Malyshev <stas@php.net>2013-06-16 16:04:29 -0700
commit0dc98208ee0c7b372c8c81e5d2d833974e001f83 (patch)
tree1d7936b58385c4a103b820b73ecf0d67442d1972
parentd9c034ee5e561e824a30829a474ef7b7dd18f19e (diff)
downloadphp-git-0dc98208ee0c7b372c8c81e5d2d833974e001f83.tar.gz
Move unsigned char declaration to top of block
-rw-r--r--ext/standard/filters.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/standard/filters.c b/ext/standard/filters.c
index aa4be5ca9b..0a59039635 100644
--- a/ext/standard/filters.c
+++ b/ext/standard/filters.c
@@ -870,9 +870,10 @@ static php_conv_err_t php_conv_qprint_encode_convert(php_conv_qprint_encode *ins
/* Check to see if this is EOL whitespace. */
if (inst->lbchars != NULL) {
+ unsigned char *ps2;
unsigned int j, lb_cnt2;
+
lb_cnt2 = 0;
- unsigned char *ps2;
ps2 = ps;
trail_ws = 1;