aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fetchmail.h2
-rw-r--r--interface.c18
-rw-r--r--xalloca.c2
3 files changed, 11 insertions, 11 deletions
diff --git a/fetchmail.h b/fetchmail.h
index 8b4280b3..627048f4 100644
--- a/fetchmail.h
+++ b/fetchmail.h
@@ -566,7 +566,7 @@ char *xstrdup(const char *);
#include <alloca.h>
#else
#ifdef _AIX
- #pragma alloca
+#pragma alloca
#endif
#endif
#define xalloca(ptr, t, n) if (!(ptr = (t) alloca(n)))\
diff --git a/interface.c b/interface.c
index 29d4c107..a70e6104 100644
--- a/interface.c
+++ b/interface.c
@@ -32,16 +32,16 @@
#include <net/if.h>
#if defined(__FreeBSD__)
#if defined __FreeBSD_USE_KVM
- #if __FreeBSD_version >= 300001
- #include <net/if_var.h>
- #endif
- #include <kvm.h>
- #include <nlist.h>
- #include <sys/fcntl.h>
+#if __FreeBSD_version >= 300001
+#include <net/if_var.h>
+#endif
+#include <kvm.h>
+#include <nlist.h>
+#include <sys/fcntl.h>
#else
- #include <sys/sysctl.h>
- #include <net/route.h>
- #include <net/if_dl.h>
+#include <sys/sysctl.h>
+#include <net/route.h>
+#include <net/if_dl.h>
#endif
#endif
#include "config.h"
diff --git a/xalloca.c b/xalloca.c
index 812b5514..b9d8d545 100644
--- a/xalloca.c
+++ b/xalloca.c
@@ -15,7 +15,7 @@
#include <alloca.h>
#else
#ifdef _AIX
- #pragma alloca
+#pragma alloca
#endif
#endif