remove spurious semi colon
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
6dc3204208
commit
5876b3cc70
|
@ -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)
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue