From a0ba08a5ce04112cd694b832c7e6ea2c841d84b5 Mon Sep 17 00:00:00 2001 From: mpech <> Date: Wed, 2 Jan 2002 10:22:18 +0000 Subject: [PATCH] pids should be pid_t, not int --- src/lib/libutil/pidfile.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/libutil/pidfile.c b/src/lib/libutil/pidfile.c index 945889fc..e009572d 100644 --- a/src/lib/libutil/pidfile.c +++ b/src/lib/libutil/pidfile.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pidfile.c,v 1.2 2001/12/08 02:25:06 deraadt Exp $ */ +/* $OpenBSD: pidfile.c,v 1.3 2002/01/02 10:22:18 mpech Exp $ */ /* $NetBSD: pidfile.c,v 1.4 2001/02/19 22:43:42 cgd Exp $ */ /*- @@ -38,7 +38,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$OpenBSD: pidfile.c,v 1.2 2001/12/08 02:25:06 deraadt Exp $"; +static const char rcsid[] = "$OpenBSD: pidfile.c,v 1.3 2002/01/02 10:22:18 mpech Exp $"; #endif /* LIBC_SCCS and not lint */ #include @@ -50,7 +50,7 @@ static const char rcsid[] = "$OpenBSD: pidfile.c,v 1.2 2001/12/08 02:25:06 deraa #include static char *pidfile_path; -static int pidfile_pid; +static pid_t pidfile_pid; static void pidfile_cleanup(void);