diff options
| author | Larry Hastings <larry@hastings.org> | 2014-08-05 06:06:16 (GMT) |
|---|---|---|
| committer | Larry Hastings <larry@hastings.org> | 2014-08-05 06:06:16 (GMT) |
| commit | b1dc112dca375158b59134617fe58b103742804f (patch) | |
| tree | 27038de55760c39fa99abc8704ce49c40b93113a /Modules/posixmodule.c | |
| parent | 548095cd4ff79b70d4ca1c6cd47b6e1397260db1 (diff) | |
| download | cpython-b1dc112dca375158b59134617fe58b103742804f.zip cpython-b1dc112dca375158b59134617fe58b103742804f.tar.gz cpython-b1dc112dca375158b59134617fe58b103742804f.tar.bz2 | |
More fixes for the unhappy AMD FreeBSD 9 buildbot. Fingers crossed.
Diffstat (limited to 'Modules/posixmodule.c')
| -rw-r--r-- | Modules/posixmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 25bfa5d..d953b5c 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -3509,7 +3509,7 @@ os_lchmod_impl(PyModuleDef *module, path_t *path, int mode) { int res; Py_BEGIN_ALLOW_THREADS - res = lchmod(path.narrow, i); + res = lchmod(path->narrow, mode); Py_END_ALLOW_THREADS if (res < 0) { path_error(path); @@ -3661,7 +3661,7 @@ os_lchflags_impl(PyModuleDef *module, path_t *path, unsigned long flags) { int res; Py_BEGIN_ALLOW_THREADS - res = lchflags(path.narrow, flags); + res = lchflags(path->narrow, flags); Py_END_ALLOW_THREADS if (res < 0) { return path_error(path); |
