diff options
author | 2020-06-26 15:57:39 +0000 | |
---|---|---|
committer | 2020-06-26 15:57:39 +0000 | |
commit | 115bd590ca7d0ec7cc4dfca08115d79c7c772436 (patch) | |
tree | f0f4d66a56fb4e0047cc6ceb1e3f1e3f9558e540 /usr.bin/awk/parse.c | |
parent | Update awk to June 12, 2020 version. (diff) | |
download | wireguard-openbsd-115bd590ca7d0ec7cc4dfca08115d79c7c772436.tar.xz wireguard-openbsd-115bd590ca7d0ec7cc4dfca08115d79c7c772436.zip |
Update awk to June 25, 2020 version.
Diffstat (limited to 'usr.bin/awk/parse.c')
-rw-r--r-- | usr.bin/awk/parse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/awk/parse.c b/usr.bin/awk/parse.c index 01b5b7e1304..b0a25c94e70 100644 --- a/usr.bin/awk/parse.c +++ b/usr.bin/awk/parse.c @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.c,v 1.10 2020/06/13 01:21:01 millert Exp $ */ +/* $OpenBSD: parse.c,v 1.11 2020/06/26 15:57:39 millert Exp $ */ /**************************************************************** Copyright (C) Lucent Technologies 1997 All Rights Reserved @@ -274,7 +274,7 @@ void defn(Cell *v, Node *vl, Node *st) /* turn on FCN bit in definition, */ for (p = vl; p; p = p->nnext) n++; v->fval = n; - DPRINTF( ("defining func %s (%d args)\n", v->nval, n) ); + DPRINTF("defining func %s (%d args)\n", v->nval, n); } int isarg(const char *s) /* is s in argument list for current function? */ |