The following changes since commit 98dc2db5f11e6d597ca44aa6bf49f0dbd4397725: XP/2003 compatability fix (2012-10-03 19:46:46 +0200) are available in the git repository at: git://git.kernel.dk/fio.git master Jens Axboe (1): Fix bad check for terse version format 4 init.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) --- Diff of recent changes: diff --git a/init.c b/init.c index 2ad039b..23be863 100644 --- a/init.c +++ b/init.c @@ -1456,8 +1456,8 @@ int parse_cmd_line(int argc, char *argv[]) break; case 'V': terse_version = atoi(optarg); - if (!(terse_version == 2 || terse_version == 3) || - (terse_version == 4)) { + if (!(terse_version == 2 || terse_version == 3 || + terse_version == 4)) { log_err("fio: bad terse version format\n"); exit_val = 1; do_exit++; -- 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