summaryrefslogtreecommitdiff
path: root/apps/plugins/text_editor.c
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2009-01-07 09:53:46 +0000
committerBjörn Stenberg <bjorn@haxx.se>2009-01-07 09:53:46 +0000
commita36cdf5b37994a301d4fdeab123ee1569a34cf46 (patch)
tree5794a1f13f93e3d7190572e07709aa1a11e9e892 /apps/plugins/text_editor.c
parentf9329e4c9273f1b82aa5dbb36f243546ce55036d (diff)
downloadrockbox-a36cdf5b37994a301d4fdeab123ee1569a34cf46.tar.gz
rockbox-a36cdf5b37994a301d4fdeab123ee1569a34cf46.zip
Removed the sim_ prefix from the plugin api.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19704 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/text_editor.c')
-rw-r--r--apps/plugins/text_editor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/text_editor.c b/apps/plugins/text_editor.c
index c9d973fe22..abb278728f 100644
--- a/apps/plugins/text_editor.c
+++ b/apps/plugins/text_editor.c
@@ -141,7 +141,7 @@ int get_eol_string(char* fn)
141 return 0; 141 return 0;
142 else if (!fn[0]) 142 else if (!fn[0])
143 return 0; 143 return 0;
144 fd = rb->PREFIX(open(fn,O_RDONLY)); 144 fd = rb->open(fn,O_RDONLY);
145 if (fd<0) 145 if (fd<0)
146 return 0; 146 return 0;
147 eol[0] = '\0'; 147 eol[0] = '\0';