From 9c8630211358d152a632c945b7db9746e5da600b Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Thu, 4 Oct 2018 17:33:02 +0200 Subject: [PATCH] acd.h: No "," at last enum element --- src/include/lwip/prot/acd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/lwip/prot/acd.h b/src/include/lwip/prot/acd.h index ed512491..e6f0dc80 100644 --- a/src/include/lwip/prot/acd.h +++ b/src/include/lwip/prot/acd.h @@ -75,13 +75,13 @@ typedef enum { ACD_STATE_PASSIVE_ONGOING, /* To many conflicts occured, we need to wait before restarting the selection * process */ - ACD_STATE_RATE_LIMIT, + ACD_STATE_RATE_LIMIT } acd_state_enum_t; typedef enum { ACD_IP_OK, /* IP address is good, no conflicts found in checking state */ ACD_RESTART_CLIENT, /* Conflict found -> the client should try again */ - ACD_DECLINE, /* Decline the received IP address (rate limiting)*/ + ACD_DECLINE /* Decline the received IP address (rate limiting)*/ } acd_callback_enum_t; #ifdef __cplusplus