diff options
author | Luca Deri <lucaderi@users.noreply.github.com> | 2024-10-18 07:17:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-18 07:17:03 +0200 |
commit | 0ef0752c806335a023d369f4c35b80349e3223e8 (patch) | |
tree | 2e2216e178bcb4dc92267bd598ab1081da3e8415 /src/include | |
parent | b7355ef63c36a67728a5811c68454d2d5fee1a82 (diff) |
Increased struct ndpi_flow_struct size (#2596)
Build fix
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/ndpi_typedefs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/ndpi_typedefs.h b/src/include/ndpi_typedefs.h index 2074181bf..6fd139365 100644 --- a/src/include/ndpi_typedefs.h +++ b/src/include/ndpi_typedefs.h @@ -1591,8 +1591,8 @@ struct ndpi_flow_struct { _Static_assert(sizeof(((struct ndpi_flow_struct *)0)->protos) <= 264, "Size of the struct member protocols increased to more than 264 bytes, " "please check if this change is necessary."); -_Static_assert(sizeof(struct ndpi_flow_struct) <= 1176, - "Size of the flow struct increased to more than 1176 bytes, " +_Static_assert(sizeof(struct ndpi_flow_struct) <= 1184, + "Size of the flow struct increased to more than 1184 bytes, " "please check if this change is necessary."); #endif #endif |