From bec5576fde5c6d8cb2b7c67f36eb427814f15b00 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 4 Dec 2020 22:53:28 -0800 Subject: [PATCH] options: Fix error message for parsing chart file names. --- src/output/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/output/options.c b/src/output/options.c index 43a0f1c0b8..3f2fc47873 100644 --- a/src/output/options.c +++ b/src/output/options.c @@ -324,7 +324,7 @@ parse_chart_file_name (struct driver_option *o) { msg (MW, _("%s: `%s' is `%s' but a file name that contains " "`#' is required."), - o->name, o->value, o->driver_name); + o->driver_name, o->name, o->value); chart_file_name = default_chart_file_name (o->default_value); } } -- 2.30.2