diff options
author | 2002-05-17 11:58:56 +0000 | |
---|---|---|
committer | 2002-05-17 11:58:56 +0000 | |
commit | f9156f9bb431d110f6a252ae27addc8335e320d9 (patch) | |
tree | dbd6217c706d411e91c204d26b2173f59e308b0c | |
parent | sync with KAME. (diff) | |
download | wireguard-openbsd-f9156f9bb431d110f6a252ae27addc8335e320d9.tar.xz wireguard-openbsd-f9156f9bb431d110f6a252ae27addc8335e320d9.zip |
oops, worked only because va_end is a noop on most of our arches.
-rw-r--r-- | usr.bin/make/error.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/error.c b/usr.bin/make/error.c index 086739a4ed4..b5fd187fcb3 100644 --- a/usr.bin/make/error.c +++ b/usr.bin/make/error.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: error.c,v 1.10 2002/02/19 19:39:38 millert Exp $ */ +/* $OpenBSD: error.c,v 1.11 2002/05/17 11:58:56 espie Exp $ */ /* * Copyright (c) 2001 Marc Espie. @@ -175,6 +175,6 @@ Parse_Error(int type, const char *fmt, ...) va_start(ap, fmt); ParseVErrorInternal(Parse_Getfilename(), Parse_Getlineno(), type, fmt, ap); - va_end(va); + va_end(ap); } |