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

gitlab.com/Remmina/remmina-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2020-05-21 22:36:38 +0300
committerAntenore Gatta <antenore@simbiosi.org>2020-05-21 22:36:38 +0300
commitc2e38f55c341aef7c59214c1e971d94716bbc679 (patch)
tree3d9d17ce02f8f5a5ce21908d5fd2f5e82412c09f
parent768e4a52780cef25d9a43da9acb6ba4893d8e919 (diff)
Set macro name to uppercase
-rw-r--r--nx_plugin.c2
-rw-r--r--nx_plugin.h2
-rw-r--r--nx_session_manager.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/nx_plugin.c b/nx_plugin.c
index c7b38de..73ff7ff 100644
--- a/nx_plugin.c
+++ b/nx_plugin.c
@@ -314,7 +314,7 @@ static void remmina_plugin_nx_log_callback(const gchar *fmt, ...)
va_list args;
va_start(args, fmt);
vsnprintf(buffer, sizeof(buffer), fmt, args);
- remmina_plugin_debug(buffer);
+ REMMINA_PLUGIN_DEBUG(buffer);
va_end(args);
}
diff --git a/nx_plugin.h b/nx_plugin.h
index aa294b9..eb0375d 100644
--- a/nx_plugin.h
+++ b/nx_plugin.h
@@ -76,6 +76,6 @@ typedef struct _RemminaPluginNxData {
} RemminaPluginNxData;
extern RemminaPluginService *remmina_plugin_nx_service;
-#define remmina_plugin_debug(fmt, ...) remmina_plugin_nx_service->_remmina_debug(__func__, fmt, ##__VA_ARGS__)
+#define REMMINA_PLUGIN_DEBUG(fmt, ...) remmina_plugin_nx_service->_remmina_debug(__func__, fmt, ##__VA_ARGS__)
G_END_DECLS
diff --git a/nx_session_manager.c b/nx_session_manager.c
index f122cf0..3e5b625 100644
--- a/nx_session_manager.c
+++ b/nx_session_manager.c
@@ -113,7 +113,7 @@ void remmina_nx_session_manager_on_row_activated(GtkTreeView *tree, GtkTreePath
{
TRACE_CALL(__func__);
RemminaPluginNxData *gpdata = GET_PLUGIN_DATA(gp);
- remmina_plugin_debug("Default response_id %d",
+ REMMINA_PLUGIN_DEBUG("Default response_id %d",
gpdata->default_response);
if (gpdata->default_response >= 0) {