From: Naveen Albert Date: Thu, 21 Mar 2024 15:21:00 +0000 (-0400) Subject: menuselect: Minor cosmetic fixes. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d45b84dee98f21c3743ac97fa767844728f5bf1;p=thirdparty%2Fasterisk.git menuselect: Minor cosmetic fixes. Improve some of the formatting from dd3f17c699e320d6d30c94298d8db49573ba28da (#521). --- diff --git a/menuselect/menuselect.c b/menuselect/menuselect.c index 222d0d79e5..cf19fbbfeb 100644 --- a/menuselect/menuselect.c +++ b/menuselect/menuselect.c @@ -1933,17 +1933,15 @@ static int sanity_check(void) fprintf(stderr, "\n" "***********************************************************\n" " The existing menuselect.makeopts file did not specify \n" - " that '%s' should not be included. However, \n" - " %s%s\n" - " %s.\n" + " that '%s' should not be included. However, %s%s%s.\n" " \n" " Either run 'make menuselect' or remove the existing \n" " menuselect.makeopts file to resolve this issue. \n" "***********************************************************\n" "\n", mem->name, - mem->depsfailed ? "dependencies for this module were not found" : "", + mem->depsfailed ? "\ndependencies for this module were not found" : "", mem->depsfailed && mem->conflictsfailed ? " and" : "", - mem->conflictsfailed ? "a conflict exists" : ""); + mem->conflictsfailed ? "\na conflict exists" : ""); insane = 1; } }