Commit 106dd20c authored by Thomas Dreibholz's avatar Thomas Dreibholz

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

parent b71fd6c7
...@@ -2349,8 +2349,8 @@ void init_RU_proc(RU_t *ru) { ...@@ -2349,8 +2349,8 @@ void init_RU_proc(RU_t *ru) {
} }
if (setup_RU_buffers(ru)!=0) { if (setup_RU_buffers(ru)!=0) {
printf("Exiting, cannot initialize RU Buffers\n"); LOG_I(PHY,"Exiting, cannot initialize RU Buffers\n");
exit(-1); 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