Skip to content
Snippets Groups Projects
Commit a947a9ac authored by Yang Tse's avatar Yang Tse
Browse files

compiler warning: fix followup

Fix compiler warning: variable was set but never used

Fix compiler warning: clobber ignored
parent 9b534305
No related branches found
No related tags found
No related merge requests found
......@@ -47,8 +47,11 @@ void curlx_FD_SET(int fd, fd_set *fdset);
void curlx_FD_ZERO(fd_set *fdset);
#ifndef BUILDING_WARNLESS_C
# undef FD_ISSET
# define FD_ISSET(a,b) curlx_FD_ISSET((a),(b))
# undef FD_SET
# define FD_SET(a,b) curlx_FD_SET((a),(b))
# undef FD_ZERO
# define FD_ZERO(a) curlx_FD_ZERO((a))
#endif
......
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