summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorNicolas Pennequin <nicolas.pennequin@free.fr>2007-10-09 15:15:00 +0000
committerNicolas Pennequin <nicolas.pennequin@free.fr>2007-10-09 15:15:00 +0000
commitef9abe438573dde2e059e6f7ba50933c4eddffc6 (patch)
tree58be21aebcdbc6b3e35fa13c25ae521f9615bfad /apps
parentf22e323e6376951f16d8d3876bce4cfc13fe4e97 (diff)
downloadrockbox-ef9abe438573dde2e059e6f7ba50933c4eddffc6.tar.gz
rockbox-ef9abe438573dde2e059e6f7ba50933c4eddffc6.zip
Keep track of the number of opened files in the sim to enforce the same limit as on target.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15045 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 246df99290..d5f70be043 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -209,7 +209,7 @@ static const struct plugin_api rockbox_api = {
209 209
210 /* file */ 210 /* file */
211 (open_func)PREFIX(open), 211 (open_func)PREFIX(open),
212 close, 212 PREFIX(close),
213 (read_func)PREFIX(read), 213 (read_func)PREFIX(read),
214 PREFIX(lseek), 214 PREFIX(lseek),
215 (creat_func)PREFIX(creat), 215 (creat_func)PREFIX(creat),