From 566a765ad89c22cc6d003d64ebaed99fb2d4f297 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 14 Aug 2017 10:59:10 +0800 Subject: [PATCH] Spawn.vala --- Spawn.vala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Spawn.vala b/Spawn.vala index ad55e762..554655e3 100644 --- a/Spawn.vala +++ b/Spawn.vala @@ -345,7 +345,7 @@ public class Spawn : Object this.ctx = new MainLoop (); this.ctx.run(); // wait fore exit? - print("main_loop done!"); + //print("main_loop done!"); } else { this.tidyup(); // tidyup get's called in main loop. } @@ -367,7 +367,7 @@ public class Spawn : Object private void tidyup() { - print("Tidyup\n"); + //print("Tidyup\n"); if (this.pid > -1) { Process.close_pid(this.pid); // hopefully kills it.. this.pid = -1; @@ -377,7 +377,7 @@ public class Spawn : Object if (this.out_ch != null) this.out_ch.shutdown(true); if (this.err_ch != null) this.err_ch.shutdown(true); } catch (Error e) { - // error shutting donw. + // error shutting down } // blank out channels this.in_ch = null; -- 2.39.2