summaryrefslogtreecommitdiff
path: root/typewrappers.c
diff options
context:
space:
mode:
Diffstat (limited to 'typewrappers.c')
-rw-r--r--typewrappers.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/typewrappers.c b/typewrappers.c
index f3f4138..77bdeef 100644
--- a/typewrappers.c
+++ b/typewrappers.c
@@ -145,10 +145,10 @@ libvirt_constcharPtrWrap(const char *str)
PyObject *
libvirt_boolWrap(int val)
{
- if (val)
- Py_RETURN_TRUE;
- else
- Py_RETURN_FALSE;
+ if (val)
+ Py_RETURN_TRUE;
+ else
+ Py_RETURN_FALSE;
}
int