Remove useless return after crash

This commit is contained in:
RincewindsHat 2023-10-06 16:05:01 +02:00
parent aba1ef97f3
commit 9faa417aeb

View file

@ -770,7 +770,6 @@ main(int argc, char **argv)
table = malloc(sizeof(struct rta_host *) * targets);
if(!table) {
crash("main(): malloc failed for host table");
return 3;
}
i = 0;