Unify semicolon after ph_proto and ph_structs

Fix extra semicolon after these macros.
Found by GCC 16 (pedantic).
This commit is contained in:
Christoph Grüninger 2026-05-02 18:13:54 +02:00 committed by Guangli Dai
parent 548e233966
commit a34a8c5e13
2 changed files with 4 additions and 4 deletions

View file

@ -95,8 +95,8 @@ struct edata_cmp_summary_s {
/* Extent (span of pages). Use accessor functions for e_* fields. */
typedef struct edata_s edata_t;
ph_structs(edata_avail, edata_t, ESET_ENUMERATE_MAX_NUM);
ph_structs(edata_heap, edata_t, ESET_ENUMERATE_MAX_NUM);
ph_structs(edata_avail, edata_t, ESET_ENUMERATE_MAX_NUM)
ph_structs(edata_heap, edata_t, ESET_ENUMERATE_MAX_NUM)
struct edata_s {
/*
* Bitfield containing several fields:

View file

@ -27,7 +27,7 @@
*/
#define PSSET_ENUMERATE_MAX_NUM 32
typedef struct hpdata_s hpdata_t;
ph_structs(hpdata_age_heap, hpdata_t, PSSET_ENUMERATE_MAX_NUM);
ph_structs(hpdata_age_heap, hpdata_t, PSSET_ENUMERATE_MAX_NUM)
struct hpdata_s {
/*
* We likewise follow the edata convention of mangling names and forcing
@ -136,7 +136,7 @@ TYPED_LIST(hpdata_empty_list, hpdata_t, ql_link_empty)
TYPED_LIST(hpdata_purge_list, hpdata_t, ql_link_purge)
TYPED_LIST(hpdata_hugify_list, hpdata_t, ql_link_hugify)
ph_proto(, hpdata_age_heap, hpdata_t);
ph_proto(, hpdata_age_heap, hpdata_t)
static inline void *
hpdata_addr_get(const hpdata_t *hpdata) {