From 5876b3cc703b2a4de0516a31a9dc372635c1d24e Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Thu, 24 Jul 2008 15:23:18 +0200 Subject: [PATCH] remove spurious semi colon Signed-off-by: Julien Danjou --- common/draw.h | 2 +- structs.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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