summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2010-08-28 15:06:06 +0000
committerFrank Gevaerts <frank@gevaerts.be>2010-08-28 15:06:06 +0000
commit67096fae73ff9d0d0071a8dae8144526ee0803c6 (patch)
treea7ee07da3e8fcaa63decf5664d920d02de5fea4f /apps
parent63c1769701ae9254bc99e9222c6399eefe6ce135 (diff)
downloadrockbox-67096fae73ff9d0d0071a8dae8144526ee0803c6.tar.gz
rockbox-67096fae73ff9d0d0071a8dae8144526ee0803c6.zip
Fix typo
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27916 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/lib/simple_viewer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/simple_viewer.c b/apps/plugins/lib/simple_viewer.c
index 09144b645b..16cbcb35de 100644
--- a/apps/plugins/lib/simple_viewer.c
+++ b/apps/plugins/lib/simple_viewer.c
@@ -35,7 +35,7 @@ struct view_info {
35 const char *text; /* displayed text */ 35 const char *text; /* displayed text */
36 int display_lines; /* number of lines can be displayed */ 36 int display_lines; /* number of lines can be displayed */
37 int line_count; /* number of lines */ 37 int line_count; /* number of lines */
38 int line; /* current fisrt line */ 38 int line; /* current first line */
39 int start; /* possition of first line in text */ 39 int start; /* possition of first line in text */
40}; 40};
41 41