ISO C forbids empty initializer braces.

This commit is contained in:
Jonathan Schleifer 2012-04-25 11:22:42 +02:00
parent 8f5b7428a2
commit a74f8e1bac

View file

@ -33,7 +33,7 @@
static struct bucket {
CFWObject *key, *obj;
uint32_t hash;
} deleted = {};
} deleted = { NULL, NULL, 0 };
struct CFWMap {
CFWObject obj;