README: no delay on sync to backup git hosts anymore
[fio.git] / backend.c
index 975317f26f1145de277709366ca2cf108c92f32f..3eafff6e6bbbcca9bc8ef3594ff3f74e0e222013 100644 (file)
--- a/backend.c
+++ b/backend.c
@@ -894,7 +894,7 @@ static uint64_t do_io(struct thread_data *td)
                } else {
                        ret = td_io_queue(td, io_u);
 
-                       if (io_queue_event(td, io_u, &ret, ddir, &bytes_issued, 1, &comp_time))
+                       if (io_queue_event(td, io_u, &ret, ddir, &bytes_issued, 0, &comp_time))
                                break;
 
                        /*
@@ -1242,7 +1242,8 @@ static int keep_running(struct thread_data *td)
 
 static int exec_string(struct thread_options *o, const char *string, const char *mode)
 {
-       int ret, newlen = strlen(string) + strlen(o->name) + strlen(mode) + 9 + 1;
+       size_t newlen = strlen(string) + strlen(o->name) + strlen(mode) + 9 + 1;
+       int ret;
        char *str;
 
        str = malloc(newlen);