summaryrefslogtreecommitdiffstats
path: root/Modules/_ctypes/libffi_msvc
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2007-11-15 20:03:00 (GMT)
committerThomas Heller <theller@ctypes.org>2007-11-15 20:03:00 (GMT)
commit6e8ea0fd9c46978cf3101bd3ea94022751464ad9 (patch)
tree043905fb276696c2203b66a220a2e4e0ae39ef35 /Modules/_ctypes/libffi_msvc
parent4d0ebcc7fa6dbb8cfacb480835326178d2638115 (diff)
downloadcpython-6e8ea0fd9c46978cf3101bd3ea94022751464ad9.zip
cpython-6e8ea0fd9c46978cf3101bd3ea94022751464ad9.tar.gz
cpython-6e8ea0fd9c46978cf3101bd3ea94022751464ad9.tar.bz2
Fix two compiler warnings on Win64.
Diffstat (limited to 'Modules/_ctypes/libffi_msvc')
-rw-r--r--Modules/_ctypes/libffi_msvc/prep_cif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ctypes/libffi_msvc/prep_cif.c b/Modules/_ctypes/libffi_msvc/prep_cif.c
index 2650fa0..cd623a1 100644
--- a/Modules/_ctypes/libffi_msvc/prep_cif.c
+++ b/Modules/_ctypes/libffi_msvc/prep_cif.c
@@ -163,7 +163,7 @@ ffi_status ffi_prep_cif(/*@out@*/ /*@partial@*/ ffi_cif *cif,
bytes = ALIGN(bytes, (*ptr)->alignment);
#endif
- bytes += STACK_ARG_SIZE((*ptr)->size);
+ bytes += (unsigned)STACK_ARG_SIZE((*ptr)->size);
}
#endif
}