X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=Spawn.vala;h=af6bd4a1ae943746f3af6487c3bad153b3f641cf;hb=62c19d5aef200276d91630847900098a2db37ec8;hp=ce5c3c34f75394a5ebe1530fb051b7631b9db1e8;hpb=418175344b44a7cb8ce7437870ba20f90fd319e1;p=gitlive diff --git a/Spawn.vala b/Spawn.vala index ce5c3c34..af6bd4a1 100644 --- a/Spawn.vala +++ b/Spawn.vala @@ -346,9 +346,9 @@ public class Spawn : Object Process.close_pid(this.pid); // hopefully kills it.. this.pid = -1; } - if (this.in_ch) this.in_ch.shudown(true); - if (this.out_ch) this.out_ch.shudown(true); - if (this.err_ch) this.err_ch.shudown(true); + if (this.in_ch) this.in_ch.shutdown(true); + if (this.out_ch) this.out_ch.shutdown(true); + if (this.err_ch) this.err_ch.shutdown(true); // blank out channels this.in_ch = null; this.err_ch = null;