From: Victor Julien Date: Fri, 3 Dec 2021 15:26:32 +0000 (+0100) Subject: common: fix missing ; in header X-Git-Tag: suricata-7.0.0-beta1~1141 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6d7c1519edf2ddd251ea5ec429bdade242527331;p=thirdparty%2Fsuricata.git common: fix missing ; in header --- 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