fixed warning: ISO C++ forbids compound-literals

master
Josef Pavlik 8 years ago committed by Scott Lahteine
parent 0bd66807b2
commit dca50737f5

@ -109,7 +109,8 @@ class Buzzer {
this->tick(); this->tick();
thermalManager.manage_heater(); thermalManager.manage_heater();
} }
this->buffer.enqueue((tone_t) { duration, frequency }); tone_t tone = { duration, frequency };
this->buffer.enqueue(tone);
} }
/** /**

Loading…
Cancel
Save