summaryrefslogtreecommitdiff
path: root/apps/plugins/databox/edittoken.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/databox/edittoken.h')
-rw-r--r--apps/plugins/databox/edittoken.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/plugins/databox/edittoken.h b/apps/plugins/databox/edittoken.h
index 6f176e72b5..77c948b2af 100644
--- a/apps/plugins/databox/edittoken.h
+++ b/apps/plugins/databox/edittoken.h
@@ -84,9 +84,11 @@
84#define INTVALUE_GENRE 17 84#define INTVALUE_GENRE 17
85#define INTVALUE_FILENAME 18 85#define INTVALUE_FILENAME 18
86 86
87#define SPELLING_LENGTH 100
88
87struct token { 89struct token {
88 char kind; 90 char kind;
89 char spelling[255]; 91 char spelling[SPELLING_LENGTH + 1];
90 long intvalue; 92 long intvalue;
91}; 93};
92char *tokentypetostring(int tokentype); 94char *tokentypetostring(int tokentype);