[gnome-remote-desktop] rdp-fuse-clipboard: Fix debug output



commit d6b141e69929212440f02bfc27e735d90eea762e
Author: Pascal Nowack <Pascal Nowack gmx de>
Date:   Fri Aug 6 08:16:56 2021 +0200

    rdp-fuse-clipboard: Fix debug output
    
    The debug output message is supposed to say "All clipDataIds used.",
    instead of "All clipDataIds still used.", as there was no clipDataId
    deletion before.

 src/grd-rdp-fuse-clipboard.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/grd-rdp-fuse-clipboard.c b/src/grd-rdp-fuse-clipboard.c
index 680573f..612d96e 100644
--- a/src/grd-rdp-fuse-clipboard.c
+++ b/src/grd-rdp-fuse-clipboard.c
@@ -348,7 +348,7 @@ grd_rdp_fuse_clipboard_clip_data_id_new (GrdRdpFuseClipboard *rdp_fuse_clipboard
       GHashTableIter iter;
       ClipDataEntry *iter_value;
 
-      g_debug ("[FUSE Clipboard] All clipDataIds still used. Removing the oldest one");
+      g_debug ("[FUSE Clipboard] All clipDataIds used. Removing the oldest one");
 
       g_hash_table_iter_init (&iter, rdp_fuse_clipboard->clip_data_table);
       while (g_hash_table_iter_next (&iter, NULL, (gpointer *) &iter_value))


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]