summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorFlorian Obser <florian@cvs.openbsd.org>2021-10-22 15:11:52 +0000
committerFlorian Obser <florian@cvs.openbsd.org>2021-10-22 15:11:52 +0000
commite341c29df74fe12c80931d32f5becbf25c41cd2d (patch)
tree5c0fea146bd74bb451e4369d0a88279e5e91104b /sbin
parentb9041dc6c1d2560ca446e447e882ecd980a476f1 (diff)
oops, missed unused variable in previous
Diffstat (limited to 'sbin')
-rw-r--r--sbin/unwind/unwind.c3
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)