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; bool indx;
char *prompt; char *prompt;
static const char * const (yesno[]) = {"no", "yes", NULL}; static const char * const yesno[] = {"no", "yes", NULL};
if (!cmwModified) return TRUE; if (!cmwModified) return TRUE;
prompt = TxPrintString("The color map has been modified.\n" prompt = TxPrintString("The color map has been modified.\n"

View File

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

View File

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