]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
avoid warning for unused variable
authorDaniel Stenberg <daniel@haxx.se>
Tue, 5 Oct 2004 08:42:56 +0000 (08:42 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 5 Oct 2004 08:42:56 +0000 (08:42 +0000)
lib/strerror.c

index c9e6c3a186265c571ac1427bd1d5a20f2ac6e814..dd5acc81b10d143f0418ca1a24eb21f9f4874c50 100644 (file)
@@ -568,6 +568,7 @@ const char *Curl_strerror(struct connectdata *conn, int err)
 const char *Curl_idn_strerror (struct connectdata *conn, int err)
 {
 #ifdef HAVE_IDNA_STRERROR
+  (void)conn;
   return idna_strerror((Idna_rc) err);
 #else
   const char *str;