src/Lsp.vala
authorAlan Knowles <alan@roojs.com>
Thu, 21 Mar 2024 14:21:37 +0000 (22:21 +0800)
committerAlan Knowles <alan@roojs.com>
Thu, 21 Mar 2024 14:21:37 +0000 (22:21 +0800)
src/Lsp.vala

index fefc3fc..841de53 100644 (file)
@@ -477,7 +477,7 @@ namespace Lsp {
                
                public static void copyList(GLib.ListStore source, GLib.ListStore target) 
                {
-                       GLib.debug("copyList source=%d target=%d", source.get_n_items(), target.get_n_items());
+                       GLib.debug("copyList source=%d target=%d", (int)source.get_n_items(), (int)target.get_n_items());
                        var i = 0;
                        while (i < source.get_n_items()) {
                                if (i >= target.get_n_items()) {