diff --git a/common/draw.h b/common/draw.h index ad32ff13..99af158e 100644 --- a/common/draw.h +++ b/common/draw.h @@ -71,7 +71,7 @@ struct area_t uint16_t height; }; -DO_ARRAY(area_t, area, DO_NOTHING); +DO_ARRAY(area_t, area, DO_NOTHING) #define AREA_LEFT(a) ((a).x) #define AREA_TOP(a) ((a).y) diff --git a/structs.h b/structs.h index 41c1fef3..08827fd2 100644 --- a/structs.h +++ b/structs.h @@ -290,7 +290,7 @@ struct client_t /** Next and previous clients */ client_t *prev, *next; }; -DO_ARRAY(client_t *, client, DO_NOTHING); +DO_ARRAY(client_t *, client, DO_NOTHING) struct client_node_t { @@ -322,7 +322,7 @@ struct _tag_t /** clients in this tag */ client_array_t clients; }; -ARRAY_TYPE(tag_t *, tag); +ARRAY_TYPE(tag_t *, tag) /** Padding type */ typedef struct