From f7c0cd69d1381e7987fd4a4b9c1735ed73d33837 Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Mon, 13 Nov 2017 10:10:45 +0100 Subject: [PATCH] - simple_display: fix compile for non-ARM_HARDWARE Conflicts: src/driver/simple_display.cpp Signed-off-by: Thilo Graf --- src/driver/simple_display.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/driver/simple_display.cpp b/src/driver/simple_display.cpp index 255936ba8..17486caaa 100644 --- a/src/driver/simple_display.cpp +++ b/src/driver/simple_display.cpp @@ -80,7 +80,7 @@ static int proc_put(const char *path, bool state) return ret; } #else -static int proc_put(const char *path, bool state) {return 0;} +static int proc_put(const char *, bool) {return 0;} #endif static char volume = 0;