Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiovanni Panozzo <giovanni@panozzo.it>2020-05-21 16:53:23 +0300
committerGiovanni Panozzo <giovanni@panozzo.it>2020-05-21 16:53:23 +0300
commit5af9f7ef618db5956c00d6b1c7f35f33b693479d (patch)
treed15c42e3199c780436b14259748c4837b6d98fd8 /plugins/www
parent9c1683a357634035b4eef38e3ea8e6728c90a85f (diff)
Change __VA_OPT__ to ## to support clang
Diffstat (limited to 'plugins/www')
-rw-r--r--plugins/www/www_plugin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/www/www_plugin.h b/plugins/www/www_plugin.h
index bfa8a4b0f..aca70c889 100644
--- a/plugins/www/www_plugin.h
+++ b/plugins/www/www_plugin.h
@@ -48,7 +48,7 @@ typedef enum {
} WWWWebViewDocumentType;
extern RemminaPluginService *remmina_plugin_service;
-#define remmina_plugin_debug(fmt, ...) remmina_plugin_service->_remmina_debug(__func__, fmt __VA_OPT__(,) __VA_ARGS__)
+#define remmina_plugin_debug(fmt, ...) remmina_plugin_service->_remmina_debug(__func__, fmt, ##__VA_ARGS__)
G_BEGIN_DECLS