From 25b5a928f7fe7f8328b2d8edc620f5c64e483d19 Mon Sep 17 00:00:00 2001 From: Brian Somers Date: Fri, 23 Jun 2006 01:42:03 +0000 Subject: [PATCH] Remove some unused variables --- lib/libutil/pidfile.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/libutil/pidfile.c b/lib/libutil/pidfile.c index cf7441e0d103..fc1516340cf7 100644 --- a/lib/libutil/pidfile.c +++ b/lib/libutil/pidfile.c @@ -46,7 +46,6 @@ static int pidfile_verify(struct pidfh *pfh) { struct stat sb; - int fd; if (pfh == NULL || pfh->pf_fd == -1) return (EDOOFUS); @@ -147,7 +146,6 @@ pidfile_open(const char *path, mode_t mode, pid_t *pidptr) int pidfile_write(struct pidfh *pfh) { - struct stat sb; char pidstr[16]; int error, fd;