Remove superfluous parenthesis around regular type declarations
This commit is contained in:
parent
1241e95dab
commit
efcf36f348
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -824,7 +824,7 @@ _magic_startup(ClientData clientData,
|
|||
int
|
||||
TxDialog(prompt, responses, defresp)
|
||||
char *prompt;
|
||||
char *(responses[]);
|
||||
char *responses[];
|
||||
int defresp;
|
||||
{
|
||||
Tcl_Obj *objPtr;
|
||||
|
|
|
|||
|
|
@ -324,7 +324,7 @@ TxReprint()
|
|||
int
|
||||
TxDialog(prompt, responses, deflt)
|
||||
char *prompt;
|
||||
char *(responses[]);
|
||||
char *responses[];
|
||||
int deflt;
|
||||
{
|
||||
int code;
|
||||
|
|
|
|||
Loading…
Reference in New Issue