From 26f853e45d859555394efb3042bd7fc09bb5ef53 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Tue, 9 Mar 2010 19:22:22 +0100 Subject: build: consistently indent preprocessor directives * global: patch created by running: for f in $(git ls-files '*.[ch]') ; do cppi $f > $f.t && mv $f.t $f done --- typewrappers.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'typewrappers.h') diff --git a/typewrappers.h b/typewrappers.h index dadcdd4..8e1998e 100644 --- a/typewrappers.h +++ b/typewrappers.h @@ -11,14 +11,14 @@ #include "libvirt/virterror.h" #ifdef __GNUC__ -#ifdef ATTRIBUTE_UNUSED -#undef ATTRIBUTE_UNUSED -#endif -#ifndef ATTRIBUTE_UNUSED -#define ATTRIBUTE_UNUSED __attribute__ ((__unused__)) -#endif /* ATTRIBUTE_UNUSED */ +# ifdef ATTRIBUTE_UNUSED +# undef ATTRIBUTE_UNUSED +# endif +# ifndef ATTRIBUTE_UNUSED +# define ATTRIBUTE_UNUSED __attribute__ ((__unused__)) +# endif /* ATTRIBUTE_UNUSED */ #else -#define ATTRIBUTE_UNUSED +# define ATTRIBUTE_UNUSED #endif #define PyvirConnect_Get(v) (((v) == Py_None) ? NULL : \ -- cgit