diff options
| author | Martin v. Löwis <martin@v.loewis.de> | 2006-02-15 17:27:45 +0000 |
|---|---|---|
| committer | Martin v. Löwis <martin@v.loewis.de> | 2006-02-15 17:27:45 +0000 |
| commit | 26a6348f77faff1083d501950812ea9f68eb9547 (patch) | |
| tree | 8aebd3631f3b60d9753cd8271c0ad7c1379af1a2 /Python/sysmodule.c | |
| parent | ad4cf65e988f853a3b32a7da30198ce9c6c73c02 (diff) | |
| download | cpython-26a6348f77faff1083d501950812ea9f68eb9547.tar.gz | |
Merge ssize_t branch.
Diffstat (limited to 'Python/sysmodule.c')
| -rw-r--r-- | Python/sysmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index f793b99348..b240cc744e 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1279,7 +1279,7 @@ PySys_SetArgv(int argc, char **argv) if (path != NULL) { char *argv0 = argv[0]; char *p = NULL; - int n = 0; + Py_ssize_t n = 0; PyObject *a; #ifdef HAVE_READLINK char link[MAXPATHLEN+1]; |
