summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/searchengine/searchengine.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/plugins/searchengine/searchengine.c b/apps/plugins/searchengine/searchengine.c
index 4b14836ddc..5065da7e78 100644
--- a/apps/plugins/searchengine/searchengine.c
+++ b/apps/plugins/searchengine/searchengine.c
@@ -5,7 +5,7 @@
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < 5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ 6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * $Id 8 * $Id$
9 * 9 *
10 * Copyright (C) 2005 by Michiel van der Kolk 10 * Copyright (C) 2005 by Michiel van der Kolk
11 * 11 *
@@ -71,7 +71,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
71 audio_buffer_free=0; 71 audio_buffer_free=0;
72 72
73 /* now go ahead and have fun! */ 73 /* now go ahead and have fun! */
74 rb->splash(HZ*2, true, "SearchEngine v0.1"); 74 PUTS("SearchEngine v0.1");
75 tokenstream[0].kind=TOKEN_NUMIDENTIFIER; 75 tokenstream[0].kind=TOKEN_NUMIDENTIFIER;
76 tokenstream[0].intvalue=INTVALUE_YEAR; 76 tokenstream[0].intvalue=INTVALUE_YEAR;
77 tokenstream[1].kind=TOKEN_GTE; 77 tokenstream[1].kind=TOKEN_GTE;
@@ -96,6 +96,5 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
96/* rb->write(fd,result,rb->tagdbheader->filecount);*/ 96/* rb->write(fd,result,rb->tagdbheader->filecount);*/
97 rb->close(fd); 97 rb->close(fd);
98 } 98 }
99 rb->sleep(HZ*10);
100 return PLUGIN_OK; 99 return PLUGIN_OK;
101} 100}