summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-05-07 16:56:40 +0000
committerThomas Martitz <kugel@rockbox.org>2010-05-07 16:56:40 +0000
commite919b5d5b929faf2af96ce0b36d8bc5b55236153 (patch)
tree85612a9614e2e98cdac5605a4a5e8c519270cc61 /apps/plugin.c
parent9697b37d50194c839d930e8532ba9692278f81d4 (diff)
downloadrockbox-e919b5d5b929faf2af96ce0b36d8bc5b55236153.tar.gz
rockbox-e919b5d5b929faf2af96ce0b36d8bc5b55236153.zip
Fix disastrous variable shadowing, change casts to unsigned in (cygwin doesn't like mode_t there, and unsigned int should be equally correct) and check the correct bitmask in sim_open().
Should repair filesystem accesses on the sim. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25881 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 8a32a159b4..e4480deed1 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -987,8 +987,7 @@ static int open_wrapper(const char* pathname, int flags, ...)
987 { 987 {
988 va_list ap; 988 va_list ap;
989 va_start(ap, flags); 989 va_start(ap, flags);
990 int fd; 990 fd = sim_open(pathname, flags, va_arg(ap, unsigned int));
991 fd = sim_open(pathname, flags, va_arg(ap, mode_t));
992 va_end(ap); 991 va_end(ap);
993 } 992 }
994 else 993 else