From 6f6eb4d360b12286078f262d8c452b009cc7c605 Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Sun, 17 Feb 2013 17:22:48 +0100 Subject: [PATCH] wrap around ; as the style guide police against nasty errors sugests. --- citadel/utils/setup.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/citadel/utils/setup.c b/citadel/utils/setup.c index b5775fa26..41bed6132 100644 --- a/citadel/utils/setup.c +++ b/citadel/utils/setup.c @@ -334,7 +334,8 @@ void important_message(const char *title, const char *msgtext) printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"); printf(" %s \n\n%s\n\n", title, msgtext); printf("%s", _("Press return to continue...")); - if (fgets(buf, sizeof buf, stdin)); + if (fgets(buf, sizeof buf, stdin)) + ; break; case UI_DIALOG: -- 2.30.2