Remove superfluous parenthesis around regular type declarations
This commit is contained in:
parent
1241e95dab
commit
efcf36f348
|
|
@ -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"
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue