From 8593c209d9c26634df52b09d31b9ba243575a3c1 Mon Sep 17 00:00:00 2001 From: "Christoph \"baka0815\" Schwerdtfeger" Date: Sat, 25 Aug 2018 10:55:52 +0200 Subject: [PATCH] Fixed type of formatting argument --- core/linux-dist/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/linux-dist/main.cpp b/core/linux-dist/main.cpp index 7990a702c..b86540888 100755 --- a/core/linux-dist/main.cpp +++ b/core/linux-dist/main.cpp @@ -192,7 +192,7 @@ void os_SetupInput() // Multiple controllers with the same device, check for multiple button assignments if (input_evdev_button_duplicate_button(evdev_controllers[i].mapping, evdev_controllers[port].mapping)) { - printf("WARNING: One or more button(s) of this device is also used in the configuration of input device %d (mapping: %s)\n", i, evdev_controllers[i].mapping->name); + printf("WARNING: One or more button(s) of this device is also used in the configuration of input device %d (mapping: %s)\n", i, evdev_controllers[i].mapping->name.c_str()); } } }