From c9cb607a196ed2c20dafce331aadd755379aaa58 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 27 Jun 2005 22:43:11 +0000 Subject: I bet nobody enters more than 100 letters in search strings, and since there are 70 of these, we gain 10K in one single step. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6902 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/databox/edittoken.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'apps/plugins/databox/edittoken.h') diff --git a/apps/plugins/databox/edittoken.h b/apps/plugins/databox/edittoken.h index 6f176e7..77c948b 100644 --- a/apps/plugins/databox/edittoken.h +++ b/apps/plugins/databox/edittoken.h @@ -84,9 +84,11 @@ #define INTVALUE_GENRE 17 #define INTVALUE_FILENAME 18 +#define SPELLING_LENGTH 100 + struct token { char kind; - char spelling[255]; + char spelling[SPELLING_LENGTH + 1]; long intvalue; }; char *tokentypetostring(int tokentype); -- cgit v1.1