1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

list: fix typo in variable names

This commit is contained in:
Steffen Vogel 2019-04-17 18:07:12 +02:00
parent d24ae46dca
commit d34c7ac22a

View file

@ -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++) {