]> granicus.if.org Git - curl/commitdiff
fix compiler warning
authorYang Tse <yangsita@gmail.com>
Tue, 16 Jun 2009 00:06:30 +0000 (00:06 +0000)
committerYang Tse <yangsita@gmail.com>
Tue, 16 Jun 2009 00:06:30 +0000 (00:06 +0000)
src/main.c

index 91827c52f010d88e2fa7a4d02faccd0fe2606377..858910828718b095861a0e70d2707c5663c1ef4e 100644 (file)
@@ -3241,6 +3241,9 @@ static void set_nonblocking(struct Configurable *config, int fd)
     flags = fcntl(fd, F_SETFL, flags | O_NONBLOCK);
   else
     warnf(config, "fcntl failed on fd=%d: %s\n", fd, strerror(errno));
+#else
+  (void) config;
+  (void) fd;
 #endif
 }