From 4b4a9876d0199d6cfc62a9f9a671f26138973984 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 19 Dec 2018 12:36:53 +0800 Subject: [PATCH] GitRepo.vala --- GitRepo.vala | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/GitRepo.vala b/GitRepo.vala index 048bc478..78603396 100644 --- a/GitRepo.vala +++ b/GitRepo.vala @@ -29,6 +29,7 @@ public class GitRepo : Object public Gee.HashMap branches; // accessed in GitBranch.. public RooTicket? activeTicket; public Gee.HashMap cache; + public Gee.HashMap config_cache; @@ -872,7 +873,7 @@ public class GitRepo : Object } repo.update_async(updateAllCallback); } - GLib.debug("calls total = %d", update_all_total); + GLib.debug("calls total = %d", (int) update_all_total); } public static void updateAllCallback(GitRepo repo, int err, string res) { @@ -880,7 +881,7 @@ public class GitRepo : Object repo.loadStatus(); update_all_total--; - GLib.debug("calls remaining = %d", update_all_total); + GLib.debug("calls remaining = %d", (int)update_all_total); if (update_all_total > 0 ) { return; -- 2.39.2