From 4ce33daf6c50d475da96f42c7b8fc2c941ac0782 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Pierre=20Andr=C3=A9?= Date: Mon, 23 Jan 2012 17:09:19 +0100 Subject: [PATCH] Cosmetic : fixed an indentation in unistr --- libntfs-3g/unistr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libntfs-3g/unistr.c b/libntfs-3g/unistr.c index c0ac3427..9a238014 100644 --- a/libntfs-3g/unistr.c +++ b/libntfs-3g/unistr.c @@ -710,9 +710,9 @@ static int utf8_to_unicode(u32 *wc, const char *s) | ((u32)(s[1] & 0x3F) << 12) | ((u32)(s[2] & 0x3F) << 6) | ((u32)(s[3] & 0x3F)); - /* Check valid ranges */ - if ((*wc <= 0x10ffff) && (*wc >= 0x10000)) - return 4; + /* Check valid ranges */ + if ((*wc <= 0x10ffff) && (*wc >= 0x10000)) + return 4; } goto fail; }