forked from len0rd/rockbox
Bah, O_BINARY is of course Win32 only
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8564 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
8599b07113
commit
e7c7d9b051
1 changed files with 4 additions and 0 deletions
|
@ -323,7 +323,11 @@ void *sim_codec_load_ram(char* codecptr, int size,
|
|||
/* We have to create the dynamic link library file from ram
|
||||
so we could simulate the codec loading. */
|
||||
|
||||
#ifdef WIN32
|
||||
fd = open(path, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, S_IRWXU);
|
||||
#else
|
||||
fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, S_IRWXU);
|
||||
#endif
|
||||
if (fd < 0) {
|
||||
DEBUGF("failed to open for write: %s\n", path);
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue