summaryrefslogtreecommitdiff
path: root/cffi/backend_ctypes.py
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2013-06-19 10:29:10 +0200
committerArmin Rigo <arigo@tunes.org>2013-06-19 10:29:10 +0200
commit51f963a30da7b850c92314070842ac0c89c960cd (patch)
tree62cb75e93f5364539d0aa39b002dbf3b89d41e93 /cffi/backend_ctypes.py
parent5bf9cc5036831ef1a91c14bdba67a35cc97afead (diff)
downloadcffi-51f963a30da7b850c92314070842ac0c89c960cd.tar.gz
Finish the fix for issue #91.
Diffstat (limited to 'cffi/backend_ctypes.py')
-rw-r--r--cffi/backend_ctypes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cffi/backend_ctypes.py b/cffi/backend_ctypes.py
index 1c94f21..e7cd8a2 100644
--- a/cffi/backend_ctypes.py
+++ b/cffi/backend_ctypes.py
@@ -934,7 +934,7 @@ class CTypesBackend(object):
#
class CTypesEnum(CTypesInt):
__slots__ = []
- _reftypename = 'enum %s &' % name
+ _reftypename = '%s &' % name
def _get_own_repr(self):
value = self._value