From 50a9f74a86cac9863c8c59cd282c767392cbdc1a Mon Sep 17 00:00:00 2001 From: Alex Ionescu Date: Mon, 20 Mar 2017 08:59:56 -0700 Subject: Fix ShvOsDebugPrint (at least on Windows). --- nt/shvos.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nt/shvos.c b/nt/shvos.c index e93abaf..69bcbdc 100644 --- a/nt/shvos.c +++ b/nt/shvos.c @@ -21,7 +21,7 @@ Environment: --*/ #include -#include +#include #include "shv_x.h" NTKERNELAPI @@ -294,7 +294,7 @@ ShvOsDebugPrint ( // // Call the debugger API // - va_start(arglist); + va_start(arglist, Format); vDbgPrintEx(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, Format, arglist); va_end(arglist); } -- cgit v1.2.3