From 521da365b17aaf861af33bcc3c79ffedf1a77cf0 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Fri, 11 Sep 2020 01:03:33 -0700 Subject: setup: drop interactive "Select " prefix This seems unnecessary and doesn't always read well in combination with a given setting name string. Just get rid of it for now. --- src/setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/setup.c b/src/setup.c index 41e9b12..2f0353d 100644 --- a/src/setup.c +++ b/src/setup.c @@ -53,7 +53,7 @@ int setup_interactively(settings_t *settings, int (*setup_func)(settings_t *sett /* multiple choice */ if (!defaults) - printf("Select %s:\n", next->name); + printf("%s:\n", next->name); for (i = 0; next->values[i]; i++) { if (!defaults) -- cgit v1.2.1