diff options
author | Daniel P. Berrange <berrange@redhat.com> | 2006-11-15 19:40:00 +0000 |
---|---|---|
committer | Daniel P. Berrange <berrange@redhat.com> | 2006-11-15 19:40:00 +0000 |
commit | c4726cbadbd3cc45ab8873a807d624890729502c (patch) | |
tree | d7de1ef877f9eba185215b86f4ce596e40476010 /libvirt_wrap.h | |
parent | e8a0109538b79471154739ee341b941170cf76f9 (diff) | |
download | libvirt-python-split-c4726cbadbd3cc45ab8873a807d624890729502c.tar.gz libvirt-python-split-c4726cbadbd3cc45ab8873a807d624890729502c.tar.xz libvirt-python-split-c4726cbadbd3cc45ab8873a807d624890729502c.zip |
Fix unsigned long wraparound in python binding
Diffstat (limited to 'libvirt_wrap.h')
-rw-r--r-- | libvirt_wrap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libvirt_wrap.h b/libvirt_wrap.h index 906245a..8bcfdb3 100644 --- a/libvirt_wrap.h +++ b/libvirt_wrap.h @@ -41,6 +41,7 @@ typedef struct { PyObject * libvirt_intWrap(int val); PyObject * libvirt_longWrap(long val); +PyObject * libvirt_ulongWrap(unsigned long val); PyObject * libvirt_longlongWrap(long long val); PyObject * libvirt_charPtrWrap(char *str); PyObject * libvirt_constcharPtrWrap(const char *str); |