Fix string in log

This commit is contained in:
Adam Honse
2022-08-15 15:07:33 -05:00
parent 3a71b76075
commit 3ac70cd8a6

View File

@@ -196,7 +196,7 @@ void RGBController_CorsairV2SW::SetupZones()
LOG_DEBUG("[%s] Creating a %s zone: %s with %d LEDs", name.c_str(),
((new_zone.type == ZONE_TYPE_MATRIX) ? "matrix": "linear"),
new_zone.name, new_zone.leds_count);
new_zone.name.c_str(), new_zone.leds_count);
new_zone.leds_min = new_zone.leds_count;
new_zone.leds_max = new_zone.leds_count;
zones.push_back(new_zone);