]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
common: fix missing ; in header
authorVictor Julien <vjulien@oisf.net>
Fri, 3 Dec 2021 15:26:32 +0000 (16:26 +0100)
committerVictor Julien <vjulien@oisf.net>
Fri, 3 Dec 2021 15:28:18 +0000 (16:28 +0100)
src/suricata-common.h

index 6e6cd397f2dd43cb1765914736c2e0f72e0fa034..85303f9fe068251f62ac9524800c54f0915c6bac 100644 (file)
 #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 <pcre2.h>