metalink_cleanup: define it without argument
authorDaniel Stenberg <daniel@haxx.se>
Fri, 15 Feb 2013 10:19:59 +0000 (11:19 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 15 Feb 2013 10:19:59 +0000 (11:19 +0100)
Since the function takes no argument, the macro shouldn't take one as
some compilers will error out on that.

src/tool_metalink.h

index 2f66e6a..c31edcd 100644 (file)
@@ -155,7 +155,9 @@ void metalink_cleanup(void);
 
 #define count_next_metalink_resource(x)  0
 #define clean_metalink(x)  Curl_nop_stmt
-#define metalink_cleanup(x) Curl_nop_stmt
+
+/* metalink_cleanup() takes no arguments */
+#define metalink_cleanup Curl_nop_stmt
 
 #endif /* USE_METALINK */