X-Git-Url: http://git.roojs.org/?p=gitlive;a=blobdiff_plain;f=GitRepo.vala;fp=GitRepo.vala;h=78603396531767e868ae9969adf6438db82d2305;hp=048bc4787954beaae2aee522c38f2b05a6bdf335;hb=4b4a9876d0199d6cfc62a9f9a671f26138973984;hpb=1728bdb6d7fd6625a51e633d4c463f2038b25d43 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;