diff options
author | Marcin Kolny <marcin.kolny@gmail.com> | 2015-08-08 14:45:12 +0200 |
---|---|---|
committer | Marcin Kolny <marcin.kolny@gmail.com> | 2015-08-08 14:45:59 +0200 |
commit | 0d5f63b18f5766760cf39e82ee11482984e0a938 (patch) | |
tree | e3f74b9b37e7618c92840024077dff43e6d08f0d /examples/child_watch/main.cc | |
parent | dce7a844e48a582e42eb2b60eef5c1f2527540ac (diff) | |
parent | d94115843f38967b5e883f5f7d8057882ae364cb (diff) | |
download | glibmm-gir-gmmproc.tar.gz |
Merge branch 'master' into glibmm-gir-gmmprocglibmm-gir-gmmproc
Diffstat (limited to 'examples/child_watch/main.cc')
-rw-r--r-- | examples/child_watch/main.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/child_watch/main.cc b/examples/child_watch/main.cc index 3bbc368b..010992e3 100644 --- a/examples/child_watch/main.cc +++ b/examples/child_watch/main.cc @@ -40,7 +40,7 @@ void ChildWatch::run() { GPid pid = fork(); - if(pid==0) + if(!pid) { sleep(5); exit(0); @@ -59,7 +59,7 @@ void ChildWatch::on_child_exited(GPid pid, int status) int main() { - Glib::RefPtr<Glib::MainLoop> mainLoop = Glib::MainLoop::create(); + auto mainLoop = Glib::MainLoop::create(); ChildWatch cwatch(mainLoop); cwatch.run(); |