[pypy-commit] pypy more-rposix: Fix failure in test_extfunc

amauryfa noreply at buildbot.pypy.org
Mon May 4 09:13:29 CEST 2015


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: more-rposix
Changeset: r77023:de639e15e1ef
Date: 2015-05-04 09:12 +0200
http://bitbucket.org/pypy/pypy/changeset/de639e15e1ef/

Log:	Fix failure in test_extfunc

diff --git a/rpython/rlib/rposix_stat.py b/rpython/rlib/rposix_stat.py
--- a/rpython/rlib/rposix_stat.py
+++ b/rpython/rlib/rposix_stat.py
@@ -410,7 +410,7 @@
     if not _WIN32:
         with lltype.scoped_alloc(STAT_STRUCT.TO) as stresult:
             arg = _as_bytes0(path)
-            handle_posix_error('lstat', c_stat(arg, stresult))
+            handle_posix_error('lstat', c_lstat(arg, stresult))
             return build_stat_result(stresult)
     else:
         traits = _preferred_traits(path)


More information about the pypy-commit mailing list