summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2020-09-11 01:03:33 -0700
committerVito Caputo <vcaputo@pengaru.com>2020-09-11 01:03:33 -0700
commit521da365b17aaf861af33bcc3c79ffedf1a77cf0 (patch)
tree5e19ecdc36ffb3311116963572443f55a5004211 /src
parent71e0b6365481415c212bb81cf93acc3dac50781b (diff)
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.
Diffstat (limited to 'src')
-rw-r--r--src/setup.c2
1 files changed, 1 insertions, 1 deletions
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)
© All Rights Reserved