mirror of git://git.suckless.org/sbase
libutil/recurse: Use while-loop instead of for-loop with only condition
This commit is contained in:
parent
f4b9b966cf
commit
60895834f0
|
@ -96,7 +96,7 @@ recurse(const char *path, void *data, struct recursor *r)
|
||||||
if (!(r->flags & DIRFIRST))
|
if (!(r->flags & DIRFIRST))
|
||||||
r->fn(path, &st, data, r);
|
r->fn(path, &st, data, r);
|
||||||
|
|
||||||
for (; r->hist; ) {
|
while (r->hist) {
|
||||||
h = r->hist;
|
h = r->hist;
|
||||||
r->hist = r->hist->prev;
|
r->hist = r->hist->prev;
|
||||||
free(h);
|
free(h);
|
||||||
|
|
Loading…
Reference in New Issue