summaryrefslogtreecommitdiff
path: root/examples/child_watch/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'examples/child_watch/main.cc')
-rw-r--r--examples/child_watch/main.cc4
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();