From a36cdf5b37994a301d4fdeab123ee1569a34cf46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Stenberg?= Date: Wed, 7 Jan 2009 09:53:46 +0000 Subject: Removed the sim_ prefix from the plugin api. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19704 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/text_editor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/plugins/text_editor.c') diff --git a/apps/plugins/text_editor.c b/apps/plugins/text_editor.c index c9d973f..abb2787 100644 --- a/apps/plugins/text_editor.c +++ b/apps/plugins/text_editor.c @@ -141,7 +141,7 @@ int get_eol_string(char* fn) return 0; else if (!fn[0]) return 0; - fd = rb->PREFIX(open(fn,O_RDONLY)); + fd = rb->open(fn,O_RDONLY); if (fd<0) return 0; eol[0] = '\0'; -- cgit v1.1