From 07c7d63d446d56a3a0392e3ce1294a9042c180e9 Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Tue, 18 Aug 2015 14:43:57 +0200 Subject: Fix warning when use -Wdocumentation src/include/ndpi_api.h:73:13: error: parameter 'ndpi_malloc' not found in the function declaration [-Werror,-Wdocumentation] src/include/ndpi_api.h:91:13: error: parameter 'cache' not found in the function declaration [-Werror,-Wdocumentation] src/include/ndpi_api.h:92:13: error: parameter 'cache' not found in the function declaration [-Werror,-Wdocumentation] ndpiReader.c:152:22: error: not a Doxygen trailing comment [-Werror,-Wdocumentation] ndpiReader.c:153:36: error: not a Doxygen trailing comment [-Werror,-Wdocumentation] ndpiReader.c:156:39: error: not a Doxygen trailing comment [-Werror,-Wdocumentation] --- example/ndpiReader.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'example') diff --git a/example/ndpiReader.c b/example/ndpiReader.c index c11c0c50d..73166761f 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -149,11 +149,11 @@ static struct reader_thread ndpi_thread_info[MAX_NUM_READER_THREADS]; * @brief ID tracking */ typedef struct ndpi_id { - u_int8_t ip[4]; //< Ip address - struct ndpi_id_struct *ndpi_id; //< nDpi worker structure + u_int8_t ip[4]; // Ip address + struct ndpi_id_struct *ndpi_id; // nDpi worker structure } ndpi_id_t; -static u_int32_t size_id_struct = 0; //< ID tracking structure size +static u_int32_t size_id_struct = 0; // ID tracking structure size #ifndef ETH_P_IP #define ETH_P_IP 0x0800 -- cgit v1.2.3