summaryrefslogtreecommitdiffstats
path: root/Modules/tkappinit.c
diff options
context:
space:
mode:
authorMoshe Zadka <moshez@math.huji.ac.il>2000-08-04 15:53:06 (GMT)
committerMoshe Zadka <moshez@math.huji.ac.il>2000-08-04 15:53:06 (GMT)
commit6a078edb0768d1304d285362384476f3ecf309ba (patch)
tree87d9c42908b28f1e9a71622ac3bb2419db1b6919 /Modules/tkappinit.c
parentcf703f04ad406d905d280a364048d56aa9d21315 (diff)
downloadcpython-6a078edb0768d1304d285362384476f3ecf309ba.zip
cpython-6a078edb0768d1304d285362384476f3ecf309ba.tar.gz
cpython-6a078edb0768d1304d285362384476f3ecf309ba.tar.bz2
Removing warnings discovered by gcc -Wall
Diffstat (limited to 'Modules/tkappinit.c')
-rw-r--r--Modules/tkappinit.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/tkappinit.c b/Modules/tkappinit.c
index 5287446..c551fca 100644
--- a/Modules/tkappinit.c
+++ b/Modules/tkappinit.c
@@ -18,14 +18,14 @@
int
Tcl_AppInit(Tcl_Interp *interp)
{
- Tk_Window main;
+ Tk_Window main_window;
if (Tcl_Init (interp) == TCL_ERROR)
return TCL_ERROR;
if (Tk_Init (interp) == TCL_ERROR)
return TCL_ERROR;
- main = Tk_MainWindow(interp);
+ main_window = Tk_MainWindow(interp);
#ifdef WITH_MOREBUTTONS
{
@@ -33,9 +33,9 @@ Tcl_AppInit(Tcl_Interp *interp)
extern Tcl_CmdProc triButtonCmd;
Tcl_CreateCommand(interp, "studbutton", studButtonCmd,
- (ClientData) main, NULL);
+ (ClientData) main_window, NULL);
Tcl_CreateCommand(interp, "tributton", triButtonCmd,
- (ClientData) main, NULL);
+ (ClientData) main_window, NULL);
}
#endif