From 6d7c1519edf2ddd251ea5ec429bdade242527331 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Fri, 3 Dec 2021 16:26:32 +0100 Subject: [PATCH] common: fix missing ; in header --- src/suricata-common.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/suricata-common.h b/src/suricata-common.h index 6e6cd397f2..85303f9fe0 100644 --- a/src/suricata-common.h +++ b/src/suricata-common.h @@ -126,16 +126,16 @@ #endif #ifdef HAVE_TYPE_U_LONG_NOT_DEFINED -typedef unsigned long int u_long +typedef unsigned long int u_long; #endif #ifdef HAVE_TYPE_U_INT_NOT_DEFINED -typedef unsigned int u_int +typedef unsigned int u_int; #endif #ifdef HAVE_TYPE_U_SHORT_NOT_DEFINED -typedef unsigned short u_short +typedef unsigned short u_short; #endif #ifdef HAVE_TYPE_U_CHAR_NOT_DEFINED -typedef unsigned char u_char +typedef unsigned char u_char; #endif #include -- 2.47.2