From 657c9735a79b63ea0484dee204c19fba50235c84 Mon Sep 17 00:00:00 2001 From: Simon Goldschmidt Date: Thu, 29 Jun 2023 21:59:05 +0200 Subject: [PATCH] doxygen: dhcp: fix doxygen stumbling over nonexisting define --- src/core/ipv4/dhcp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/ipv4/dhcp.c b/src/core/ipv4/dhcp.c index 32f6611c..d9ed8b0f 100644 --- a/src/core/ipv4/dhcp.c +++ b/src/core/ipv4/dhcp.c @@ -98,7 +98,8 @@ * If additional options are requested, define this macro as a comma separated list, with leading comma. * This macro is useful for example when requested vendor specific ids (VCI/VSI options), here is an example * of requesting the VSI option (option 43) (yes, the notation is a bit strange, but it works :) - * #define DHCP_ADD_EXTRA_REQUEST_OPTIONS ,43 + * (NOTE: the space between # and define is required because of doxygen...) + * # define DHCP_ADD_EXTRA_REQUEST_OPTIONS ,43 */ #ifndef DHCP_ADD_EXTRA_REQUEST_OPTIONS #define DHCP_ADD_EXTRA_REQUEST_OPTIONS