The following changes since commit 73cfb8a7da365c37253662477edb54ecc19575df: Merge branch 'gfio' of ssh://brick.kernel.dk/data/git/fio into gfio (2012-09-27 19:28:25 +0200) are available in the git repository at: git://git.kernel.dk/fio.git gfio 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 c5dcb7f..488101b 100644 --- a/init.c +++ b/init.c @@ -1498,8 +1498,8 @@ int parse_cmd_line(int argc, char *argv[], int client_type) 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