Skip to content
Snippets Groups Projects
Commit 4f9b8695 authored by Steve Lhomme's avatar Steve Lhomme
Browse files

network: explicitly mark unreachable code

We can't exit the loop without a return.
parent 2dee0f7a
No related branches found
No related tags found
1 merge request!3136network: explicitly mark unreachable code
Pipeline #305501 passed with stage
in 20 minutes and 24 seconds
......@@ -361,7 +361,7 @@ int net_Accept(vlc_object_t *obj, int *fds)
return fd;
}
}
return -1;
vlc_assert_unreachable();
}
ssize_t (net_Read)(vlc_object_t *restrict obj, int fd,
......
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