]> Pileus Git - wmpus/blobdiff - conf.c
Add desktop files
[wmpus] / conf.c
diff --git a/conf.c b/conf.c
index 407165546c72e4c83c8234672753aef4bac011f7..889bda6e4327839927c022626a816a186b61274b 100644 (file)
--- a/conf.c
+++ b/conf.c
 #include "conf.h"
 
 /* Types */
-typedef enum { NUMBER, STRING } type_t;
-
 typedef struct {
-       type_t  type;
+       enum {
+               NUMBER,
+               STRING,
+       } type;
        char   *key;
        union {
                int   num;