From e94e8efc743dad16db5655df8c219d4309c13c5f Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Wed, 17 Apr 2019 18:07:12 +0200 Subject: [PATCH] list: fix typo in variable names --- common/lib/list.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/lib/list.cpp b/common/lib/list.cpp index fe769fde7..d66520c33 100644 --- a/common/lib/list.cpp +++ b/common/lib/list.cpp @@ -302,7 +302,7 @@ void vlist_extend(struct vlist *l, size_t len, void *val) void vlist_filter(struct vlist *l, dtor_cb_t cb) { - size_t u, j; + size_t i, j; pthread_mutex_lock(&l->lock); for (i = 0, j = 0; i < vlist_length(l); i++) {