summaryrefslogtreecommitdiffstats
path: root/lanbrowsing/lisa/strictmain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lanbrowsing/lisa/strictmain.cpp')
-rw-r--r--lanbrowsing/lisa/strictmain.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lanbrowsing/lisa/strictmain.cpp b/lanbrowsing/lisa/strictmain.cpp
index 829c8f5d..a948d6df 100644
--- a/lanbrowsing/lisa/strictmain.cpp
+++ b/lanbrowsing/lisa/strictmain.cpp
@@ -203,11 +203,11 @@ int main(int argc, char** argv)
}
}
- //fork and let the tqparent exit
+ //fork and let the parent exit
pid_t pid=fork();
if (pid>0)
{
- //this is the tqparent
+ //this is the parent
exit(0);
}
else if (pid<0)