Skip to content

Commit

Permalink
Remove extra parens
Browse files Browse the repository at this point in the history
  • Loading branch information
nnorwitz committed Dec 19, 2005
1 parent c10978f commit 9dbc7dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/_tkinter.c
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ Tkapp_New(char *screenName, char *baseName, char *className,
}

strcpy(argv0, className);
if (isupper(Py_CHARMASK((argv0[0]))))
if (isupper(Py_CHARMASK(argv0[0])))
argv0[0] = tolower(argv0[0]);
Tcl_SetVar(v->interp, "argv0", argv0, TCL_GLOBAL_ONLY);
ckfree(argv0);
Expand Down

0 comments on commit 9dbc7dd

Please sign in to comment.