From 3408595f77920764bf6c4c313a0abc6a1cfb8048 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 30 Jan 2017 21:41:17 +0000 Subject: When a flag option is used in a format, it should use the number form not string. --- format.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'format.c') diff --git a/format.c b/format.c index 3a809435..cc23387a 100644 --- a/format.c +++ b/format.c @@ -638,7 +638,7 @@ format_find(struct format_tree *ft, const char *key, int modifiers) if (o == NULL) o = options_parse_get(global_s_options, key, &idx, 0); if (o != NULL) { - found = options_tostring(o, idx); + found = options_tostring(o, idx, 1); goto found; } } -- cgit