remove spurious semi colon

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2008-07-24 15:23:18 +02:00
parent 6dc3204208
commit 5876b3cc70
2 changed files with 3 additions and 3 deletions

View File

@ -71,7 +71,7 @@ struct area_t
uint16_t height; 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_LEFT(a) ((a).x)
#define AREA_TOP(a) ((a).y) #define AREA_TOP(a) ((a).y)

View File

@ -290,7 +290,7 @@ struct client_t
/** Next and previous clients */ /** Next and previous clients */
client_t *prev, *next; client_t *prev, *next;
}; };
DO_ARRAY(client_t *, client, DO_NOTHING); DO_ARRAY(client_t *, client, DO_NOTHING)
struct client_node_t struct client_node_t
{ {
@ -322,7 +322,7 @@ struct _tag_t
/** clients in this tag */ /** clients in this tag */
client_array_t clients; client_array_t clients;
}; };
ARRAY_TYPE(tag_t *, tag); ARRAY_TYPE(tag_t *, tag)
/** Padding type */ /** Padding type */
typedef struct typedef struct