The following changes since commit 43cdea1d0d62fe57c0b1017c55b4700cd95f63b0: server: unlink sock file if interrupted early (2014-03-25 15:06:17 -0700) are available in the git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 9f973d1322fe387bc9b4442a23a912cfbc2203b9: Merge branch 'master' of ssh://git.kernel.dk/data/git/fio (2014-03-28 08:09:35 -0600) ---------------------------------------------------------------- Jens Axboe (2): Fix wrong time conversion on --status-interval= command line option Merge branch 'master' of ssh://git.kernel.dk/data/git/fio init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- Diff of recent changes: diff --git a/init.c b/init.c index 9b0666d..adb9066 100644 --- a/init.c +++ b/init.c @@ -1938,7 +1938,7 @@ int parse_cmd_line(int argc, char *argv[], int client_type) case 'L': { long long val; - if (check_str_time(optarg, &val, 1)) { + if (check_str_time(optarg, &val, 0)) { log_err("fio: failed parsing time %s\n", optarg); do_exit++; exit_val = 1; -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html