diff options
Diffstat (limited to 'lib/fuse.c')
-rw-r--r-- | lib/fuse.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -109,8 +109,8 @@ static fino_t get_ino(struct node *node) static fino_t next_ino(struct fuse *f) { - while(f->ctr == 0 || __get_node(f, f->ctr) != NULL) - f->ctr++; + do f->ctr++; + while(f->ctr == 0 || __get_node(f, f->ctr) != NULL); return f->ctr; } |