campaignd: Fix unused variable warning on Windows

This commit is contained in:
Ignacio R. Morelle 2015-07-21 21:58:17 -03:00
parent 1dabbc3163
commit 34647a3446

View file

@ -236,6 +236,7 @@ void server::fire(const std::string& hook, const std::string& addon)
}
#if defined(_WIN32)
(void)addon;
ERR_CS << "Tried to execute a script on an unsupported platform\n";
return;
#else