Skip to content
Snippets Groups Projects
Commit 19479363 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

win32: mute unused argument warnings

parent 1823e873
No related branches found
No related tags found
No related merge requests found
......@@ -321,6 +321,7 @@ ssize_t vlc_write(int fd, const void *buf, size_t len)
ssize_t vlc_writev(int fd, const struct iovec *iov, int count)
{
(void) fd; (void) iov; (void) count;
vlc_assert_unreachable();
}
......
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