diff --git a/daemon/main.c b/daemon/main.c index a50f273..18e6801 100644 --- a/daemon/main.c +++ b/daemon/main.c @@ -10,9 +10,9 @@ #include #include "accel_monitor.h" +#include "device_information.h" #include "output_manager.h" #include "usb_device_detection.h" -#include "device_information.h" static struct device_information get_device_info_for_name( char const* const device_name) @@ -31,7 +31,10 @@ static struct device_information get_device_info_for_name( if (strcmp(current.device_name, device_name) == 0) return current; } - fprintf(stderr, "No matching configuration for '%s'.\n", device_name); + fprintf(stderr, + "No matching configuration for '%s'. Using the generic " + "configuration.\n", + device_name); return DEVICE_INFORMATION_GENERIC; }