diff options
author | Richard Jones <rjones@redhat.com> | 2009-11-26 09:31:35 +0000 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2009-11-26 10:32:00 +0000 |
commit | 8e33cd5f2f2e7e30525cb2a70d86de70e3d6a4f9 (patch) | |
tree | 97c6bff30143938a291aa90471f878f7b0c18bce | |
parent | fcae398873453d0542123e040b388c3be10b14f8 (diff) | |
download | libguestfs-8e33cd5f2f2e7e30525cb2a70d86de70e3d6a4f9.tar.gz libguestfs-8e33cd5f2f2e7e30525cb2a70d86de70e3d6a4f9.tar.xz libguestfs-8e33cd5f2f2e7e30525cb2a70d86de70e3d6a4f9.zip |
daemon: Indent C macros to reflect nesting level.
-rw-r--r-- | daemon/guestfsd.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/daemon/guestfsd.c b/daemon/guestfsd.c index eef7c6de..acb44f99 100644 --- a/daemon/guestfsd.c +++ b/daemon/guestfsd.c @@ -21,7 +21,7 @@ #define _BSD_SOURCE /* for daemon(3) */ #ifdef HAVE_WINDOWS_H -#include <windows.h> +# include <windows.h> #endif #include <stdio.h> @@ -41,7 +41,7 @@ #include <sys/wait.h> #ifdef HAVE_PRINTF_H -#include <printf.h> +# include <printf.h> #endif #include "c-ctype.h" @@ -57,11 +57,11 @@ static char *read_cmdline (void); /* This is only a hint. If not defined, ignore it. */ #ifndef AI_ADDRCONFIG -#define AI_ADDRCONFIG 0 +# define AI_ADDRCONFIG 0 #endif #ifndef MAX -#define MAX(a,b) ((a)>(b)?(a):(b)) +# define MAX(a,b) ((a)>(b)?(a):(b)) #endif int verbose = 0; @@ -187,7 +187,7 @@ main (int argc, char *argv[]) #endif #ifdef WIN32 -#define setenv(n,v,f) _putenv(n "=" v) +# define setenv(n,v,f) _putenv(n "=" v) #endif /* Set up a basic environment. After we are called by /init the * environment is essentially empty. |