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:
authorAntenore Gatta <antenore@simbiosi.org>2020-05-21 22:36:38 +0300
committerAntenore Gatta <antenore@simbiosi.org>2020-05-21 22:36:38 +0300
commit3b27fb051e97f690d4d9abb3afa8df1a28582d5e (patch)
treeb69867e9059d04c0a422e19ca4982f11c6aadaa3 /plugins/rdp/rdp_channels.c
parent5af9f7ef618db5956c00d6b1c7f35f33b693479d (diff)
Set macro name to uppercase
Diffstat (limited to 'plugins/rdp/rdp_channels.c')
-rw-r--r--plugins/rdp/rdp_channels.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/rdp/rdp_channels.c b/plugins/rdp/rdp_channels.c
index 09e58adfd..3235d930b 100644
--- a/plugins/rdp/rdp_channels.c
+++ b/plugins/rdp/rdp_channels.c
@@ -79,7 +79,7 @@ void remmina_rdp_OnChannelConnectedEventHandler(rdpContext* context, ChannelConn
if (rfi->scale == REMMINA_PROTOCOL_WIDGET_SCALE_MODE_DYNRES) {
remmina_rdp_event_send_delayed_monitor_layout(rfi->protocol_widget);
}
- }remmina_plugin_debug("Channel %s has been opened", e->name);
+ }REMMINA_PLUGIN_DEBUG("Channel %s has been opened", e->name);
}
void remmina_rdp_OnChannelDisconnectedEventHandler(rdpContext* context, ChannelConnectedEventArgs* e)
@@ -91,6 +91,6 @@ void remmina_rdp_OnChannelDisconnectedEventHandler(rdpContext* context, ChannelC
if (rfi->settings->SoftwareGdi)
gdi_graphics_pipeline_uninit(context->gdi, (RdpgfxClientContext*) e->pInterface);
}
- remmina_plugin_debug("Channel %s has been closed", e->name);
+ REMMINA_PLUGIN_DEBUG("Channel %s has been closed", e->name);
}