diff options
Diffstat (limited to 'blkparse_fmt.c')
-rw-r--r-- | blkparse_fmt.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/blkparse_fmt.c b/blkparse_fmt.c index b309b4b..4560e56 100644 --- a/blkparse_fmt.c +++ b/blkparse_fmt.c @@ -49,14 +49,7 @@ int add_format_spec(char *option) return 1; } - /* - * Set both merges (front and back) - */ - if (spec == 'M') { - override_format['B'] = strdup(option); - override_format['M'] = strdup(option); - } else - override_format[spec] = strdup(option); + override_format[spec] = strdup(option); return 0; } |