diff options
Diffstat (limited to 'lanbrowsing/lisa/main.cpp')
-rw-r--r-- | lanbrowsing/lisa/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lanbrowsing/lisa/main.cpp b/lanbrowsing/lisa/main.cpp index e75fa0c1..7de59389 100644 --- a/lanbrowsing/lisa/main.cpp +++ b/lanbrowsing/lisa/main.cpp @@ -225,11 +225,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) |