#18399: fix comment typo.

Patch by Andrew Rowe.
This commit is contained in:
R David Murray 2013-07-10 10:57:39 -04:00
parent 37114bb548
commit 296b73c83d
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ int
main(int argc, char **argv)
{
wchar_t **argv_copy = (wchar_t **)PyMem_Malloc(sizeof(wchar_t*)*(argc+1));
/* We need a second copies, as Python might modify the first one. */
/* We need a second copy, as Python might modify the first one. */
wchar_t **argv_copy2 = (wchar_t **)PyMem_Malloc(sizeof(wchar_t*)*(argc+1));
int i, res;
char *oldloc;