commit | 7a958bd5974368e97058ab17ea94611e4d723da0 | [log] [tgz] |
---|---|---|
author | Jens Axboe <jens.axboe@oracle.com> | Fri Nov 13 12:33:54 2009 +0100 |
committer | Jens Axboe <jens.axboe@oracle.com> | Fri Nov 13 12:33:54 2009 +0100 |
tree | ded860f0e2394fb761a49e004d1b69f9eb16aabb | |
parent | 892a6ffc5363ad7f1750df9f3ec98624016660cd [diff] [blame] |
Only do math on known keywords Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
diff --git a/options.c b/options.c index 211bca7..4544378 100644 --- a/options.c +++ b/options.c
@@ -1880,13 +1880,15 @@ */ opt = new; free(o_org); + + /* + * Check for potential math and invoke bc, if possible + */ + opt = bc_calc(opt); } } - /* - * Check for potential math and invoke bc, if possible - */ - return bc_calc(opt); + return opt; } int fio_options_parse(struct thread_data *td, char **opts, int num_opts)