13
0

fix unused variable errors

This commit is contained in:
Paul Davis 2022-06-21 17:32:09 -06:00
parent cd4549aff7
commit 5bc7c26d9b

View File

@ -44,7 +44,7 @@
#ifdef ARDOURCURLDEBUG
#define CCERR(msg) do { if (cc != CURLE_OK) { std::cerr << string_compose ("curl_easy_setopt(%1) failed: %2", msg, cc) << std::endl; } } while (0)
#else
#define CCERR(msg)
#define CCERR(msg) do { (void) cc; } while (0)
#endif
using namespace ArdourCurl;