1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

metalink_cleanup: define it without argument

Since the function takes no argument, the macro shouldn't take one as
some compilers will error out on that.
This commit is contained in:
Daniel Stenberg 2013-02-15 11:19:59 +01:00
parent c25383ae13
commit 8c2c4e21b3

View 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 */