summaryrefslogtreecommitdiff
path: root/apps/plugins/dict.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/dict.c')
-rw-r--r--apps/plugins/dict.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/dict.c b/apps/plugins/dict.c
index 1a0cbaab5b..4e5066af79 100644
--- a/apps/plugins/dict.c
+++ b/apps/plugins/dict.c
@@ -172,7 +172,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
172 if (fIndex < 0) 172 if (fIndex < 0)
173 { 173 {
174 DEBUGF("Err: Failed to open index file.\n"); 174 DEBUGF("Err: Failed to open index file.\n");
175 rb->splash(HZ*2, true, "Failed to open index."); 175 rb->splash(HZ*2, "Failed to open index.");
176 return PLUGIN_ERROR; 176 return PLUGIN_ERROR;
177 } 177 }
178 178
@@ -212,7 +212,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
212 if (low == -1 || rb->strcasecmp(searchword, word.word) != 0) 212 if (low == -1 || rb->strcasecmp(searchword, word.word) != 0)
213 { 213 {
214 DEBUGF("Not found.\n"); 214 DEBUGF("Not found.\n");
215 rb->splash(HZ*2, true, "Not found."); 215 rb->splash(HZ*2, "Not found.");
216 rb->close(fIndex); 216 rb->close(fIndex);
217 return PLUGIN_OK; 217 return PLUGIN_OK;
218 } 218 }
@@ -224,7 +224,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
224 if (fData < 0) 224 if (fData < 0)
225 { 225 {
226 DEBUGF("Err: Failed to open description file.\n"); 226 DEBUGF("Err: Failed to open description file.\n");
227 rb->splash(HZ*2, true, "Failed to open descriptions."); 227 rb->splash(HZ*2, "Failed to open descriptions.");
228 rb->close(fIndex); 228 rb->close(fIndex);
229 return PLUGIN_ERROR; 229 return PLUGIN_ERROR;
230 } 230 }