mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
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:
@@ -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) { \
|
||||
|
||||
Reference in New Issue
Block a user