From 19c39fe1e262dd7c259e9f1e68d0695c43afefe3 Mon Sep 17 00:00:00 2001 From: David Steele Date: Fri, 17 Jan 2020 22:54:19 -0700 Subject: [PATCH] Fix redundancy in comment. --- src/common/fork.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/fork.c b/src/common/fork.c index cf13336d8..735e7f9cb 100644 --- a/src/common/fork.c +++ b/src/common/fork.c @@ -25,8 +25,8 @@ forkSafe(void) } /*********************************************************************************************************************************** -Detach a forked process and detach it so it can continue running after the parent process has exited. This is not a typical daemon -startup because the parent process may continue to run and perform work for some time. +Detach a forked process so it can continue running after the parent process has exited. This is not a typical daemon startup +because the parent process may continue to run and perform work for some time. ***********************************************************************************************************************************/ void forkDetach(void)