Fix test on 64-bit platforms.

This commit is contained in:
Thomas Heller 2008-07-15 20:18:46 +00:00
parent 6d75ff82f0
commit 2affb40e70

View file

@ -113,7 +113,7 @@ class Incomplete(Structure):
class Complete(Structure): class Complete(Structure):
pass pass
PComplete = POINTER(Complete) PComplete = POINTER(Complete)
Complete._fields_ = [("a", c_int)] Complete._fields_ = [("a", c_long)]
################################################################ ################################################################
# #