Remove superfluous parenthesis around regular type declarations

This commit is contained in:
Darryl L. Miles 2025-01-03 10:38:14 +00:00 committed by Tim Edwards
parent 1241e95dab
commit efcf36f348
3 changed files with 3 additions and 3 deletions

View File

@ -649,7 +649,7 @@ CMWCheckWritten(void)
{
bool indx;
char *prompt;
static const char * const (yesno[]) = {"no", "yes", NULL};
static const char * const yesno[] = {"no", "yes", NULL};
if (!cmwModified) return TRUE;
prompt = TxPrintString("The color map has been modified.\n"

View File

@ -824,7 +824,7 @@ _magic_startup(ClientData clientData,
int
TxDialog(prompt, responses, defresp)
char *prompt;
char *(responses[]);
char *responses[];
int defresp;
{
Tcl_Obj *objPtr;

View File

@ -324,7 +324,7 @@ TxReprint()
int
TxDialog(prompt, responses, deflt)
char *prompt;
char *(responses[]);
char *responses[];
int deflt;
{
int code;