From 7712c61effc3ef39d0b9eaf060049d11441884bf Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sun, 30 Nov 2008 00:25:20 +0000 Subject: Pedantic whitespace changes svn path=/trunk/libparserutils/; revision=5842 --- src/charset/encodings/utf8impl.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/charset/encodings/utf8impl.h') diff --git a/src/charset/encodings/utf8impl.h b/src/charset/encodings/utf8impl.h index 45707aa..a51eef1 100644 --- a/src/charset/encodings/utf8impl.h +++ b/src/charset/encodings/utf8impl.h @@ -84,7 +84,7 @@ do { \ break; \ } \ \ - for (i = 1; i < n; i++) { \ + for (i = 1; i < n; i++) { \ uint32_t t = s[i]; \ \ if ((t & 0xC0) != 0x80) { \ @@ -158,9 +158,9 @@ do { \ \ if (l == 1) { \ buf[0] = (uint8_t) ucs4; \ - } else { \ - uint8_t i; \ - for (i = l; i > 1; i--) { \ + } else { \ + uint8_t i; \ + for (i = l; i > 1; i--) { \ buf[i - 1] = 0x80 | (ucs4 & 0x3F); \ ucs4 >>= 6; \ } \ -- cgit v1.2.3