Skip to content
Snippets Groups Projects
Commit e9b56755 authored by Marcel Loose's avatar Marcel Loose :sunglasses:
Browse files

Task #3942: Fixed warning: ‘xxx’ may be used uninitialized in this function [-Wmaybe-uninitialized]

parent 0ac4c44e
No related branches found
No related tags found
No related merge requests found
......@@ -667,7 +667,7 @@ GCFEvent::TResult CalServer::handle_cal_start(GCFEvent& e, GCFPortInterface &por
steps = 1;
jump = 2;
}
int delay;
int delay(0);
for (int step = 0; step < steps; ++step) {
validmask.reset();
// select 12 even(X) rcus and 12 odd(Y) rcus
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment