This is an automated email from the git hooks/post-receive script.
www-data pushed a commit to branch master in repository reactos.
View the commit online: https://git.reactos.org/?p=reactos.git;a=commitdiff;h=aff6757284d64fb4d148c0...
commit aff6757284d64fb4d148c0cd0f7c1e325d746735 Author: gigaherz gigaherz@gmail.com AuthorDate: Fri Oct 6 00:04:29 2017 +0200
[NTUSER] Fix rogue CR in a LF-only file. --- win32ss/user/ntuser/desktop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/win32ss/user/ntuser/desktop.c b/win32ss/user/ntuser/desktop.c index 4d7f76bbdb..7129f58d60 100644 --- a/win32ss/user/ntuser/desktop.c +++ b/win32ss/user/ntuser/desktop.c @@ -932,7 +932,7 @@ UserGetDesktopDC(ULONG DcType, BOOL EmptyDC, BOOL ValidatehWnd) PWND DesktopObject = 0; HDC DesktopHDC = 0;
- /* This can be called from GDI/DX, so acquire the USER lock */ + /* This can be called from GDI/DX, so acquire the USER lock */ UserEnterExclusive();
if (DcType == DC_TYPE_DIRECT)