Skip to content

Commit 3ac70cd

Browse files
Fix string in log
1 parent 3a71b76 commit 3ac70cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Controllers/CorsairPeripheralV2Controller/RGBController_CorsairV2Software.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ void RGBController_CorsairV2SW::SetupZones()
196196

197197
LOG_DEBUG("[%s] Creating a %s zone: %s with %d LEDs", name.c_str(),
198198
((new_zone.type == ZONE_TYPE_MATRIX) ? "matrix": "linear"),
199-
new_zone.name, new_zone.leds_count);
199+
new_zone.name.c_str(), new_zone.leds_count);
200200
new_zone.leds_min = new_zone.leds_count;
201201
new_zone.leds_max = new_zone.leds_count;
202202
zones.push_back(new_zone);

0 commit comments

Comments
 (0)