steadystate: make flags conform to usual fio standard
[fio.git] / options.c
index a224e7bdfcaf088e6c3a77274633eee55da55041..9e3e960c831e29860d11126e82c8f84310d5452e 100644 (file)
--- a/options.c
+++ b/options.c
@@ -1127,9 +1127,9 @@ static int str_steadystate_cb(void *data, const char *str)
                if (parse_dryrun())
                        return 0;
 
-               td->o.ss_state |= __FIO_SS_PCT;
+               td->o.ss_state |= FIO_SS_PCT;
                td->o.ss_limit.u.f = val;
-       } else if (td->o.ss_state & __FIO_SS_IOPS) {
+       } else if (td->o.ss_state & FIO_SS_IOPS) {
                if (!str_to_float(nr, &val, 0)) {
                        log_err("fio: steadystate IOPS threshold postfix parsing failed\n");
                        free(nr);