X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=dedupe.c;h=61705689184d84fae5ca9d422e17622c28822924;hb=38708e211baacbf2e56ae346bc1139202c7243c4;hp=8214a786b04800a6848a706437a77aafa6a27c3e;hpb=c49cfc76551bab92d7fd0cd936ffcc901e59fb61;p=fio.git diff --git a/dedupe.c b/dedupe.c index 8214a786..61705689 100644 --- a/dedupe.c +++ b/dedupe.c @@ -7,16 +7,13 @@ */ int init_global_dedupe_working_set_seeds(void) { - int i; - struct thread_data *td; - - for_each_td(td, i) { + for_each_td(td) { if (!td->o.dedupe_global) continue; if (init_dedupe_working_set_seeds(td, 1)) return 1; - } + } end_for_each(); return 0; }