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:
parent
d24ae46dca
commit
d34c7ac22a
1 changed files with 1 additions and 1 deletions
|
@ -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++) {
|
||||
|
|
Loading…
Add table
Reference in a new issue