targets/typemapping.py
changeset 1768 691083b5682a
parent 1767 c74815729afd
child 1774 ac0fe8aabb5e
--- a/targets/typemapping.py	Fri Aug 18 12:36:31 2017 +0300
+++ b/targets/typemapping.py	Fri Aug 18 20:14:38 2017 +0300
@@ -104,7 +104,7 @@
         if c_type is not None and buffoffset < buffsize:
             cursor = c_void_p(buffptr + buffoffset)
             value = unpack_func(cast(cursor,
-                         POINTER(c_type)).contents)
+                                     POINTER(c_type)).contents)
             buffoffset += sizeof(c_type) if iectype != "STRING" else len(value)+1
             res.append(value)
         else: