summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/searchengine/token.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/searchengine/token.h b/apps/plugins/searchengine/token.h
index 75a88c3814..183f365c59 100644
--- a/apps/plugins/searchengine/token.h
+++ b/apps/plugins/searchengine/token.h
@@ -50,7 +50,7 @@
50 50
51struct token { 51struct token {
52 unsigned char kind; 52 unsigned char kind;
53 char spelling[256]; 53 char spelling[255]; // 255 should make it aligned again..
54 long intvalue; 54 long intvalue;
55}; 55};
56 56