From 50db448f0250644e8f022274db6fe028cefb490d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Pierre=20Andr=C3=A9?= Date: Tue, 30 Jul 2013 11:27:16 +0200 Subject: [PATCH] Fixed format translations for Windows Translating "%ll" print formats to "%I64" for Windows was wrong. --- ntfsprogs/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntfsprogs/utils.c b/ntfsprogs/utils.c index 781a2d6f..c5e9e233 100644 --- a/ntfsprogs/utils.c +++ b/ntfsprogs/utils.c @@ -1172,9 +1172,9 @@ char *ntfs_utils_reformat(char *out, int sz, const char *fmt) *p++ = 'l'; *p++ = *f++; i += 2; + } state = F_INIT; break; - } } } *p++ = 0;