From 8832a083f884c263b96142aad6d5ca02e3b93ea0 Mon Sep 17 00:00:00 2001 From: Paul Durrant Date: Tue, 24 Jul 2018 14:09:17 +0100 Subject: [PATCH] Remove bogus FORCEINLINE Not sure why the older toolchains tolerated this, but VS2017 quite rightly hits a link failure with free builds. Signed-off-by: Paul Durrant --- src/xencrsh/driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xencrsh/driver.c b/src/xencrsh/driver.c index 700bb3c..9e20729 100644 --- a/src/xencrsh/driver.c +++ b/src/xencrsh/driver.c @@ -50,7 +50,7 @@ static ULONG __OperatingMode; -FORCEINLINE ULONG DriverGetOperatingMode() +ULONG DriverGetOperatingMode() { return __OperatingMode; } -- 2.39.5