Commit 0a883bb4 authored by Thomas Dreibholz's avatar Thomas Dreibholz

Error should create a log entry, not use printf().

parent 67dc3039
......@@ -2349,8 +2349,8 @@ void init_RU_proc(RU_t *ru) {
}
if (setup_RU_buffers(ru)!=0) {
printf("Exiting, cannot initialize RU Buffers\n");
exit(-1);
LOG_I(PHY,"Exiting, cannot initialize RU Buffers\n");
exit(1);
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment