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
This commit is contained in:
Eric Blake
2010-03-09 19:22:22 +01:00
committed by Jim Meyering
parent 0c39adef95
commit 36d8e7d8d7
172 changed files with 2797 additions and 2797 deletions

View File

@@ -12,13 +12,13 @@
*/
#ifndef __VIR_VIRERR_H__
#define __VIR_VIRERR_H__
# define __VIR_VIRERR_H__
#include <libvirt/libvirt.h>
# include <libvirt/libvirt.h>
#ifdef __cplusplus
# ifdef __cplusplus
extern "C" {
#endif
# endif
/**
* virErrorLevel:
@@ -210,8 +210,8 @@ void virConnSetErrorFunc (virConnectPtr conn,
virErrorFunc handler);
int virConnCopyLastError (virConnectPtr conn,
virErrorPtr to);
#ifdef __cplusplus
# ifdef __cplusplus
}
#endif
# endif
#endif /* __VIR_VIRERR_H__ */