From d4d9a1be98d775f308367d2eba913ffd30eaa4f6 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Mon, 19 Oct 2015 07:13:45 +0200 Subject: [PATCH] Fixing compiler warning/error --- src/gos/gos_keil.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gos/gos_keil.c b/src/gos/gos_keil.c index 6e491300..d29e8f83 100644 --- a/src/gos/gos_keil.c +++ b/src/gos/gos_keil.c @@ -75,6 +75,8 @@ gfxThreadHandle gfxThreadCreate(void* stackarea, size_t stacksz, threadpriority_ def.instances = 1; def.stacksize = stacksz; + (void)stackarea; + return osThreadCreate(&def, param); }