From b367d7f8b2527c28d34011d26144b40f5bb17d03 Mon Sep 17 00:00:00 2001 From: yamt Date: Fri, 14 Dec 2007 19:51:37 +0000 Subject: [PATCH] fix indentation. --- lib/libc/gen/pthread_atfork.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/libc/gen/pthread_atfork.c b/lib/libc/gen/pthread_atfork.c index e60b73bd1b47..8d66e74e83a2 100644 --- a/lib/libc/gen/pthread_atfork.c +++ b/lib/libc/gen/pthread_atfork.c @@ -1,4 +1,4 @@ -/* $NetBSD: pthread_atfork.c,v 1.5 2005/09/13 01:44:09 christos Exp $ */ +/* $NetBSD: pthread_atfork.c,v 1.6 2007/12/14 19:51:37 yamt Exp $ */ /*- * Copyright (c) 2002 The NetBSD Foundation, Inc. @@ -38,7 +38,7 @@ #include #if defined(LIBC_SCCS) && !defined(lint) -__RCSID("$NetBSD: pthread_atfork.c,v 1.5 2005/09/13 01:44:09 christos Exp $"); +__RCSID("$NetBSD: pthread_atfork.c,v 1.6 2007/12/14 19:51:37 yamt Exp $"); #endif /* LIBC_SCCS and not lint */ #include "namespace.h" @@ -137,7 +137,7 @@ fork(void) mutex_lock(&atfork_lock); SIMPLEQ_FOREACH(iter, &prepareq, next) - (*iter->fn)(); + (*iter->fn)(); ret = __fork(); @@ -147,12 +147,12 @@ fork(void) * the fork call succeeded or failed. */ SIMPLEQ_FOREACH(iter, &parentq, next) - (*iter->fn)(); + (*iter->fn)(); mutex_unlock(&atfork_lock); } else { /* We are the child */ SIMPLEQ_FOREACH(iter, &childq, next) - (*iter->fn)(); + (*iter->fn)(); /* * Note: We are explicitly *not* unlocking * atfork_lock. Unlocking atfork_lock is problematic,