summaryrefslogtreecommitdiff
path: root/apps/plugins/iriverify.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/iriverify.c')
-rw-r--r--apps/plugins/iriverify.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/plugins/iriverify.c b/apps/plugins/iriverify.c
index 555c9200e3..91d890e457 100644
--- a/apps/plugins/iriverify.c
+++ b/apps/plugins/iriverify.c
@@ -144,28 +144,28 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
144 stringbuffer = buf; 144 stringbuffer = buf;
145 145
146 rb->lcd_clear_display(); 146 rb->lcd_clear_display();
147 rb->splash(0, true, "Converting..."); 147 rb->splash(0, "Converting...");
148 148
149 rc = read_buffer(0); 149 rc = read_buffer(0);
150 if(rc == 0) { 150 if(rc == 0) {
151 rb->lcd_clear_display(); 151 rb->lcd_clear_display();
152 rb->splash(0, true, "Writing..."); 152 rb->splash(0, "Writing...");
153 rc = write_file(); 153 rc = write_file();
154 154
155 if(rc < 0) { 155 if(rc < 0) {
156 rb->lcd_clear_display(); 156 rb->lcd_clear_display();
157 rb->splash(HZ, true, "Can't write file: %d", rc); 157 rb->splash(HZ, "Can't write file: %d", rc);
158 } else { 158 } else {
159 rb->lcd_clear_display(); 159 rb->lcd_clear_display();
160 rb->splash(HZ, true, "Done"); 160 rb->splash(HZ, "Done");
161 } 161 }
162 } else { 162 } else {
163 if(rc < 0) { 163 if(rc < 0) {
164 rb->lcd_clear_display(); 164 rb->lcd_clear_display();
165 rb->splash(HZ, true, "Can't read file: %d", rc); 165 rb->splash(HZ, "Can't read file: %d", rc);
166 } else { 166 } else {
167 rb->lcd_clear_display(); 167 rb->lcd_clear_display();
168 rb->splash(HZ, true, "The file is too big"); 168 rb->splash(HZ, "The file is too big");
169 } 169 }
170 } 170 }
171 171