Rename ffz() function to fio_ffz() to avoid conflicts
[fio.git] / io_u.c
diff --git a/io_u.c b/io_u.c
index 7fe5242f51287b4bd72102400686eb6f1fcd31f7..e892ec759c761de338f9e5789f74c13a3bbfb45c 100644 (file)
--- a/io_u.c
+++ b/io_u.c
@@ -84,7 +84,7 @@ static int get_next_free_block(struct thread_data *td, struct fio_file *f,
        *b = (i * BLOCKS_PER_MAP);
        while ((*b) * td->o.rw_min_bs < f->real_file_size) {
                if (f->file_map[i] != -1UL) {
-                       *b += ffz(f->file_map[i]);
+                       *b += fio_ffz(f->file_map[i]);
                        f->last_free_lookup = i;
                        return 0;
                }