Fio 1.50-rc3
[fio.git] / init.c
diff --git a/init.c b/init.c
index 18a5dc9efef499b5a8f7a0ce51958845ba95eae5..682135ba797cac3bc43bf5b17ce7b84862455a80 100644 (file)
--- a/init.c
+++ b/init.c
@@ -22,7 +22,7 @@
 
 #include "lib/getopt.h"
 
-static char fio_version_string[] = "fio 1.50-rc1";
+static char fio_version_string[] = "fio 1.50-rc3";
 
 #define FIO_RANDSEED           (0xb1899bedUL)
 
@@ -158,8 +158,11 @@ static struct thread_data *get_new_job(int global, struct thread_data *parent)
 
        if (global)
                return &def_thread;
-       if (thread_number >= max_jobs)
+       if (thread_number >= max_jobs) {
+               log_err("error: maximum number of jobs (%d) reached.\n",
+                               max_jobs);
                return NULL;
+       }
 
        td = &threads[thread_number++];
        *td = *parent;