diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2015-02-21 12:42:31 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2015-02-21 12:42:31 +0100 |
commit | bc7f4e0e3447c579f68b43d407b64a5262f0d11e (patch) | |
tree | 24dd42d1ef77d83f4d2be1d87e96f0ea440d7f11 /conf/conf.h | |
parent | ab006391305165c805f75e3a2ce20946748233c9 (diff) |
Bump max symbol length to 64.
And move the constant to conf.h header.
Thanks to Alexander Chernikov for the patch.
Diffstat (limited to 'conf/conf.h')
-rw-r--r-- | conf/conf.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/conf/conf.h b/conf/conf.h index 799873d2..00a8c8f2 100644 --- a/conf/conf.h +++ b/conf/conf.h @@ -108,6 +108,8 @@ struct symbol { char name[1]; }; +#define SYM_MAX_LEN 64 + /* Remember to update cf_symbol_class_name() */ #define SYM_VOID 0 #define SYM_PROTO 1 |