style fixes: space after keywords, () with sizeof

Signed-off-by: Christoph Lohmann <20h@r-36.net>
This commit is contained in:
Markus Teich 2015-10-18 22:52:16 +02:00 committed by Christoph Lohmann
parent c2bb8d0325
commit 9f5c6ff8d7

2
surf.c
View file

@ -31,7 +31,7 @@
char *argv0;
#define LENGTH(x) (sizeof x / sizeof x[0])
#define LENGTH(x) (sizeof(x) / sizeof(x[0]))
#define CLEANMASK(mask) (mask & (MODKEY|GDK_SHIFT_MASK))
#define COOKIEJAR_TYPE (cookiejar_get_type ())
#define COOKIEJAR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), COOKIEJAR_TYPE, CookieJar))