[KERNEL32]

* Sync format_msg.c with Wine 1.7.27.
CORE-8540

svn path=/trunk/; revision=64872
This commit is contained in:
Amine Khaldi 2014-10-21 18:25:34 +00:00
parent cd1f57b5d4
commit 3f32c3a15d
2 changed files with 2 additions and 2 deletions

View file

@ -285,7 +285,7 @@ static void format_add_char(struct _format_message_data *fmd, WCHAR c)
LPWSTR notspace;
if (fmd->space) {
notspace = fmd->space;
while (*notspace == ' ' && notspace != fmd->t)
while (notspace != fmd->t && *notspace == ' ')
notspace++;
} else
notspace = fmd->space = fmd->t;

View file

@ -272,7 +272,7 @@ kernel32 -
reactos/dll/win32/kernel32/winnls/string/casemap.c # Synced in r52754
reactos/dll/win32/kernel32/winnls/string/chartype.c # Synced in r52754
reactos/dll/win32/kernel32/winnls/string/collation.c # Synced in r52754
reactos/dll/win32/kernel32/winnls/string/format_msg.c # Synced to Wine-1.5.4
reactos/dll/win32/kernel32/winnls/string/format_msg.c # Synced to Wine-1.7.27
reactos/dll/win32/kernel32/winnls/string/lang.c # Synced in r52754
reactos/dll/win32/kernel32/winnls/string/lcformat.c # Synced in r52754
reactos/dll/win32/kernel32/winnls/string/nls.c # Synced in r52754