https://git.reactos.org/?p=reactos.git;a=commitdiff;h=f0d2bd385253d8bb6d89e3bd4cd00bc9ffc14b95

commit f0d2bd385253d8bb6d89e3bd4cd00bc9ffc14b95
Author:     Thomas Faber <[email protected]>
AuthorDate: Tue Dec 31 21:06:43 2019 +0100
Commit:     Thomas Faber <[email protected]>
CommitDate: Fri Jan 3 11:21:21 2020 +0100

    [WIN32K:NTGDI] Avoid breakpoints in syscalls.
---
 win32ss/gdi/ntgdi/brush.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/win32ss/gdi/ntgdi/brush.cpp b/win32ss/gdi/ntgdi/brush.cpp
index 5671324bbe5..41d13184b12 100644
--- a/win32ss/gdi/ntgdi/brush.cpp
+++ b/win32ss/gdi/ntgdi/brush.cpp
@@ -543,7 +543,7 @@ NtGdiSetBrushAttributes(
     _In_ HBRUSH hbr,
     _In_ DWORD dwFlags)
 {
-    __debugbreak();
+    FIXME("NtGdiSetBrushAttributes is unimplemented\n");
     return NULL;
 }
 
@@ -554,7 +554,7 @@ NtGdiClearBrushAttributes(
     _In_ HBRUSH hbr,
     _In_ DWORD dwFlags)
 {
-    __debugbreak();
+    FIXME("NtGdiClearBrushAttributes is unimplemented\n");
     return NULL;
 }
 

Reply via email to