Commit a016fb40 authored by Max Kellermann's avatar Max Kellermann

listen: fix "unused parameter" warning on WIN32

parent e8ebb1af
......@@ -422,6 +422,8 @@ static int get_remote_uid(int fd)
if (getpeereid(fd, &euid, &egid) == 0)
return euid;
#else
(void)fd;
#endif
return -1;
#endif
......
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