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

@@ -2,15 +2,15 @@
#ifdef WITH_ESX
#include <stdio.h>
#include <string.h>
#include <unistd.h>
# include <stdio.h>
# include <string.h>
# include <unistd.h>
#include "internal.h"
#include "memory.h"
#include "testutils.h"
#include "util.h"
#include "esx/esx_util.h"
# include "internal.h"
# include "memory.h"
# include "testutils.h"
# include "util.h"
# include "esx/esx_util.h"
static char *progname;
@@ -183,7 +183,7 @@ mymain(int argc, char **argv)
virSetErrorFunc(NULL, testQuietError);
#define DO_TEST(_name) \
# define DO_TEST(_name) \
do { \
if (virtTestRun("VMware "#_name, 1, test##_name, \
NULL) < 0) { \