diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2021-10-22 15:11:52 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2021-10-22 15:11:52 +0000 |
commit | e341c29df74fe12c80931d32f5becbf25c41cd2d (patch) | |
tree | 5c0fea146bd74bb451e4369d0a88279e5e91104b /sbin | |
parent | b9041dc6c1d2560ca446e447e882ecd980a476f1 (diff) |
oops, missed unused variable in previous
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/unwind/unwind.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sbin/unwind/unwind.c b/sbin/unwind/unwind.c index 67676f3107d..adea414b2df 100644 --- a/sbin/unwind/unwind.c +++ b/sbin/unwind/unwind.c @@ -1,4 +1,4 @@ -/* $OpenBSD: unwind.c,v 1.65 2021/10/22 15:03:28 florian Exp $ */ +/* $OpenBSD: unwind.c,v 1.66 2021/10/22 15:11:51 florian Exp $ */ /* * Copyright (c) 2018 Florian Obser <florian@openbsd.org> @@ -689,7 +689,6 @@ struct uw_conf * config_new_empty(void) { struct uw_conf *xconf; - int i; xconf = calloc(1, sizeof(*xconf)); if (xconf == NULL) |