From 1dad21650eb6fb3a4b9bba6c0ddd1402930163e2 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Sat, 26 Oct 2024 02:57:12 -0600 Subject: Lint for tabs-as-alignment --- libdhcp/dhcp.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'libdhcp/dhcp.c') diff --git a/libdhcp/dhcp.c b/libdhcp/dhcp.c index 2fc7724..a1f54e6 100644 --- a/libdhcp/dhcp.c +++ b/libdhcp/dhcp.c @@ -75,16 +75,16 @@ #include "config.h" #ifndef CONFIG_DHCP_DEBUG -# define CONFIG_DHCP_DEBUG 1 + #define CONFIG_DHCP_DEBUG 1 #endif #ifndef CONFIG_DHCP_HOPS -# define CONFIG_DHCP_HOPS 0 + #define CONFIG_DHCP_HOPS 0 #endif #ifndef CONFIG_DHCP_SECS -# define CONFIG_DHCP_SECS 0 + #define CONFIG_DHCP_SECS 0 #endif #ifndef CONFIG_DHCP_OPT_SIZE -# define CONFIG_DHCP_OPT_SIZE 312 + #define CONFIG_DHCP_OPT_SIZE 312 #endif /* RFC 2131 definitions *******************************************************/ @@ -226,10 +226,10 @@ static const uint8_t dhcp_magic_cookie[] = {99, 130, 83, 99}; /* Implementation *************************************************************/ #if CONFIG_DHCP_DEBUG -# include -# define debugf(fmt, ...) printf(fmt "\n" __VA_OPT__(,) __VA_ARGS__) + #include + #define debugf(fmt, ...) printf(fmt "\n" __VA_OPT__(,) __VA_ARGS__) #else -# define debugf(fmt, ...) ((void)0) + #define debugf(fmt, ...) ((void)0) #endif /* DHCP state machine. */ -- cgit v1.2.3-2-g168b