mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 13:33:30 +08:00
[KERNEL32]
* Sync format_msg.c with Wine 1.7.27. CORE-8540 svn path=/trunk/; revision=64872
This commit is contained in:
parent
cd1f57b5d4
commit
3f32c3a15d
@ -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;
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user