]> git.sur5r.net Git - i3/i3/commitdiff
Auto-update NUM_ATOMS by putting it into the enum (thx sECuRE)
authorAxel Wagner <mail@merovius.de>
Sat, 19 Mar 2011 19:58:05 +0000 (20:58 +0100)
committerAxel Wagner <mail@merovius.de>
Sat, 19 Mar 2011 19:58:05 +0000 (20:58 +0100)
i3bar/src/xcb.c

index a7f1e51b4c114695f6c98c40465d4d9e42033384..5f4c58f72624bd04a58853ac422b9d6883fd5608 100644 (file)
 #include "common.h"
 
 /* We save the Atoms in an easy to access array, indexed by an enum */
-#define NUM_ATOMS 3
-
 enum {
     #define ATOM_DO(name) name,
     #include "xcb_atoms.def"
+    NUM_ATOMS
 };
 
 xcb_intern_atom_cookie_t atom_cookies[NUM_ATOMS];