[pypy-commit] cffi wchar_t: typo

arigo noreply at buildbot.pypy.org
Wed Jun 27 10:15:50 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: wchar_t
Changeset: r532:e0234a9541a2
Date: 2012-06-26 20:39 +0200
http://bitbucket.org/cffi/cffi/changeset/e0234a9541a2/

Log:	typo

diff --git a/c/_ffi_backend.c b/c/_ffi_backend.c
--- a/c/_ffi_backend.c
+++ b/c/_ffi_backend.c
@@ -2172,7 +2172,7 @@
         { "size_t",        sizeof(size_t) | UNSIGNED },
         { "ssize_t",       sizeof(ssize_t) },
         { "wchar_t",       sizeof(wchar_t) |
-                               (sizeof(wchar_t) < 4 ? UNSIGNED : 0 },
+                               (sizeof(wchar_t) < 4 ? UNSIGNED : 0) },
         { NULL }
     };
 #undef UNSIGNED


More information about the pypy-commit mailing list