diff options
author | methodus <methodus@web.de> | 2012-12-31 16:35:39 +0100 |
---|---|---|
committer | methodus <methodus@web.de> | 2012-12-31 16:35:39 +0100 |
commit | dc34061786a0a165d388fa546331b2ea39141cc5 (patch) | |
tree | 63badf21852065ecc2a465e2777a845aa9c792e3 /include | |
parent | 624049b01b7eacfef9fd7e4a6e73f4ffa1cc36a6 (diff) | |
download | vdr-plugin-upnp-dc34061786a0a165d388fa546331b2ea39141cc5.tar.gz vdr-plugin-upnp-dc34061786a0a165d388fa546331b2ea39141cc5.tar.bz2 |
Fixed compiler issue
Diffstat (limited to 'include')
-rw-r--r-- | include/tools.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/tools.h b/include/tools.h index e640da5..8bb7865 100644 --- a/include/tools.h +++ b/include/tools.h @@ -47,6 +47,8 @@ using namespace std; namespace upnp { void log_debug_msg(const char* file, const char* func, int line, int level, const char* msg, ...) __attribute__ ((format (printf, 5, 6))); } +#else +#define LOG(level, msg...) #endif namespace upnp { |