From dda0a3a6b15030ca9ea2a0f1dab86b8dee2d67d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20H=C3=B6glinger?= Date: Sat, 12 May 2018 19:55:33 +0200 Subject: [PATCH] typecast fix --- sys/Queue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/Queue.c b/sys/Queue.c index 5e67522..3c9dd40 100644 --- a/sys/Queue.c +++ b/sys/Queue.c @@ -157,7 +157,7 @@ VOID Bus_EvtIoDeviceControl( TraceEvents(TRACE_LEVEL_ERROR, TRACE_QUEUE, "Output buffer %d too small, require at least %d", - OutputBufferLength, sizeof(XUSB_REQUEST_NOTIFICATION)); + (int)OutputBufferLength, (int)sizeof(XUSB_REQUEST_NOTIFICATION)); break; } @@ -241,7 +241,7 @@ VOID Bus_EvtIoDeviceControl( TraceEvents(TRACE_LEVEL_ERROR, TRACE_QUEUE, "Output buffer %d too small, require at least %d", - OutputBufferLength, sizeof(DS4_REQUEST_NOTIFICATION)); + (int)OutputBufferLength, (int)sizeof(DS4_REQUEST_NOTIFICATION)); break; }