summaryrefslogtreecommitdiff
path: root/usr.bin/awk/run.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2020-06-10 21:03:13 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2020-06-10 21:03:13 +0000
commit39376d8bdeae54592ccfd497c13993baee0afda5 (patch)
tree316d96e3d89f99174ffefc54532f7481f36aded4 /usr.bin/awk/run.c
parentf5914bfab18167f4e862a667b6a68739e16ae0df (diff)
Update awk to Oct 17, 2019 version.
Diffstat (limited to 'usr.bin/awk/run.c')
-rw-r--r--usr.bin/awk/run.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/awk/run.c b/usr.bin/awk/run.c
index 051170341b0..f0110beecf8 100644
--- a/usr.bin/awk/run.c
+++ b/usr.bin/awk/run.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: run.c,v 1.51 2020/06/10 21:02:33 millert Exp $ */
+/* $OpenBSD: run.c,v 1.52 2020/06/10 21:03:12 millert Exp $ */
/****************************************************************
Copyright (C) Lucent Technologies 1997
All Rights Reserved
@@ -720,7 +720,7 @@ Cell *gettemp(void) /* get a tempcell */
tmps = (Cell *) calloc(100, sizeof(Cell));
if (!tmps)
FATAL("out of space for temporaries");
- for(i = 1; i < 100; i++)
+ for (i = 1; i < 100; i++)
tmps[i-1].cnext = &tmps[i];
tmps[i-1].cnext = NULL;
}