pdsch_enodeb: remove check in while-loop

this check is always true since the false case is caught
before and the application is closed()
master
Andre Puschmann 5 years ago
parent dbcaec6689
commit bdd97ca25f

@ -679,8 +679,7 @@ static void* net_thread_fnc(void* arg)
ERROR("Error receiving from network\n"); ERROR("Error receiving from network\n");
exit(-1); exit(-1);
} }
} while (n >= 0); } while (true);
return NULL;
} }
int main(int argc, char** argv) int main(int argc, char** argv)

Loading…
Cancel
Save