diff options
| author | 2002-01-09 00:51:00 +0000 | |
|---|---|---|
| committer | 2002-01-09 00:51:00 +0000 | |
| commit | d5919ef3d78d2f79ed0d70fb463d09d201b8d9bc (patch) | |
| tree | dcb2d4569af39c647f630ea07e48716d02db4478 /usr.sbin/cron/popen.c | |
| parent | Put explicit register qualifiers into the inlines, so that they work correctly (diff) | |
| download | wireguard-openbsd-d5919ef3d78d2f79ed0d70fb463d09d201b8d9bc.tar.xz wireguard-openbsd-d5919ef3d78d2f79ed0d70fb463d09d201b8d9bc.zip | |
Kill volatile now that jongjmp is history.
Diffstat (limited to 'usr.sbin/cron/popen.c')
| -rw-r--r-- | usr.sbin/cron/popen.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/cron/popen.c b/usr.sbin/cron/popen.c index 2e922a11067..3a5722face1 100644 --- a/usr.sbin/cron/popen.c +++ b/usr.sbin/cron/popen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: popen.c,v 1.12 2001/10/24 17:28:16 millert Exp $ */ +/* $OpenBSD: popen.c,v 1.13 2002/01/09 00:51:00 millert Exp $ */ /* * Copyright (c) 1988, 1993, 1994 @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)popen.c 8.3 (Berkeley) 4/6/94"; #else -static char rcsid[] = "$OpenBSD: popen.c,v 1.12 2001/10/24 17:28:16 millert Exp $"; +static char rcsid[] = "$OpenBSD: popen.c,v 1.13 2002/01/09 00:51:00 millert Exp $"; #endif #endif /* not lint */ @@ -63,7 +63,7 @@ cron_popen(program, type, e) entry *e; { char *cp; - FILE * volatile iop; + FILE *iop; int argc, pdes[2]; PID_T pid; char *argv[MAX_ARGV]; |
