summaryrefslogtreecommitdiffstats
path: root/openbsd-compat/bsd-misc.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2003-08-02 23:33:48 +1000
committerDarren Tucker <dtucker@zip.com.au>2003-08-02 23:33:48 +1000
commit048737c9bcf25a02932d17b74398082930ee817e (patch)
treefbe92e38285cff9e9c789b269ff1364572bb80e6 /openbsd-compat/bsd-misc.c
parent2e9c9cf702d8e90809d901ec51358406be6f810a (diff)
Remove unused variable.
Diffstat (limited to 'openbsd-compat/bsd-misc.c')
-rw-r--r--openbsd-compat/bsd-misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsd-compat/bsd-misc.c b/openbsd-compat/bsd-misc.c
index 64de6945..474aae1a 100644
--- a/openbsd-compat/bsd-misc.c
+++ b/openbsd-compat/bsd-misc.c
@@ -25,7 +25,7 @@
#include "includes.h"
#include "xmalloc.h"
-RCSID("$Id: bsd-misc.c,v 1.14 2003/08/02 13:31:42 dtucker Exp $");
+RCSID("$Id: bsd-misc.c,v 1.15 2003/08/02 13:33:48 dtucker Exp $");
/*
* NB. duplicate __progname in case it is an alias for argv[0]
@@ -171,7 +171,7 @@ int nanosleep(const struct timespec *req, struct timespec *rem)
pid_t
tcgetpgrp(int fd)
{
- int result, ctty_pgrp;
+ int ctty_pgrp;
if (ioctl(STDOUT_FILENO, TIOCGPGRP, &ctty_pgrp) == -1)
return(-1);