summaryrefslogtreecommitdiff
path: root/libvirt-lxc-override.c
diff options
context:
space:
mode:
authorPavel Hrdina <phrdina@redhat.com>2015-09-22 10:41:36 +0200
committerPavel Hrdina <phrdina@redhat.com>2015-10-05 08:35:37 +0200
commit7178a63e2351a70312a33cca862ce4eca8cf9de7 (patch)
treedac3fc3dd552e54aafc5d50becc6715512e91f90 /libvirt-lxc-override.c
parentc982604ef855ef3093c03209a958295cc965957a (diff)
downloadlibvirt-python-7178a63e2351a70312a33cca862ce4eca8cf9de7.tar.gz
fix indentation
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
Diffstat (limited to 'libvirt-lxc-override.c')
-rw-r--r--libvirt-lxc-override.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/libvirt-lxc-override.c b/libvirt-lxc-override.c
index 2a3619e..8f5bb0c 100644
--- a/libvirt-lxc-override.c
+++ b/libvirt-lxc-override.c
@@ -41,10 +41,10 @@ extern void initcygvirtmod_lxc(void);
#if DEBUG_ERROR
# define DEBUG(fmt, ...) \
- printf(fmt, __VA_ARGS__)
+ printf(fmt, __VA_ARGS__)
#else
# define DEBUG(fmt, ...) \
- do {} while (0)
+ do {} while (0)
#endif
/************************************************************************
@@ -114,19 +114,19 @@ static PyMethodDef libvirtLxcMethods[] = {
#if PY_MAJOR_VERSION > 2
static struct PyModuleDef moduledef = {
- PyModuleDef_HEAD_INIT,
+ PyModuleDef_HEAD_INIT,
# ifndef __CYGWIN__
- "libvirtmod_lxc",
+ "libvirtmod_lxc",
# else
- "cygvirtmod_lxc",
+ "cygvirtmod_lxc",
# endif
- NULL,
- -1,
- libvirtLxcMethods,
- NULL,
- NULL,
- NULL,
- NULL
+ NULL,
+ -1,
+ libvirtLxcMethods,
+ NULL,
+ NULL,
+ NULL,
+ NULL
};
PyObject *
@@ -135,7 +135,7 @@ PyInit_libvirtmod_lxc
# else
PyInit_cygvirtmod_lxc
# endif
- (void)
+(void)
{
PyObject *module;
@@ -153,7 +153,7 @@ initlibvirtmod_lxc
# else
initcygvirtmod_lxc
# endif
- (void)
+(void)
{
if (virInitialize() < 0)
return;
@@ -165,6 +165,6 @@ initcygvirtmod_lxc
# else
"cygvirtmod_lxc",
# endif
- libvirtLxcMethods);
+ libvirtLxcMethods);
}
#endif /* ! PY_MAJOR_VERSION > 2 */