https://git.reactos.org/?p=reactos.git;a=commitdiff;h=de8861159020249b6403e…
commit de8861159020249b6403e547ea8e3a9f3c024bb6
Author: Pierre Schweitzer <pierre(a)reactos.org>
AuthorDate: Sun Apr 29 12:19:21 2018 +0200
Commit: Pierre Schweitzer <pierre(a)reactos.org>
CommitDate: Sun Apr 29 12:19:21 2018 +0200
[SDK] Make KdRosRegisterCliCallback() return status from KdSystemDebugControl().
---
sdk/include/reactos/kdros.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sdk/include/reactos/kdros.h b/sdk/include/reactos/kdros.h
index 94aa5adc8f..30d85b64e6 100644
--- a/sdk/include/reactos/kdros.h
+++ b/sdk/include/reactos/kdros.h
@@ -47,11 +47,11 @@ KdRosDumpStackFrames(
#if defined(KDBG)
FORCEINLINE
-VOID
+ULONG
KdRosRegisterCliCallback(
PVOID Callback)
{
- KdSystemDebugControl('RbdK', Callback, FALSE, 0, 0, 0, 0);
+ return KdSystemDebugControl('RbdK', Callback, FALSE, 0, 0, 0, 0);
}
FORCEINLINE