From c3366b80624db04598711a32357619a1cc9b8eb5 Mon Sep 17 00:00:00 2001 From: Alex Ionescu Date: Thu, 29 Dec 2005 18:45:16 +0000 Subject: [PATCH] Fix build svn path=/trunk/; revision=20431 --- reactos/ntoskrnl/ke/profile.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/ke/profile.c b/reactos/ntoskrnl/ke/profile.c index e903050ddf8..1ebea2378d7 100644 --- a/reactos/ntoskrnl/ke/profile.c +++ b/reactos/ntoskrnl/ke/profile.c @@ -122,7 +122,7 @@ KeStartProfile(PKPROFILE Profile, if (!FreeBuffer) ExFreePool(SourceBuffer); } -VOID +BOOLEAN STDCALL KeStopProfile(PKPROFILE Profile) { @@ -161,6 +161,9 @@ KeStopProfile(PKPROFILE Profile) /* Free the Source Object */ if (CurrentSource) ExFreePool(CurrentSource); + + /* FIXME */ + return FALSE; } ULONG -- 2.17.1