forked from len0rd/rockbox
Set a mode that makes sense as the Rockbox code doesn't use modes...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3386 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
ed87c774f8
commit
7d2f8e7063
1 changed files with 2 additions and 2 deletions
|
@ -123,9 +123,9 @@ int x11_creat(char *name, int mode)
|
||||||
sprintf(buffer, "%s%s", SIMULATOR_ARCHOS_ROOT, name);
|
sprintf(buffer, "%s%s", SIMULATOR_ARCHOS_ROOT, name);
|
||||||
|
|
||||||
debugf("We create the real file '%s'\n", buffer);
|
debugf("We create the real file '%s'\n", buffer);
|
||||||
return (creat)(buffer, mode);
|
return (creat)(buffer, 0666);
|
||||||
}
|
}
|
||||||
return (creat)(name, mode);
|
return (creat)(name, 0666);
|
||||||
}
|
}
|
||||||
|
|
||||||
int x11_remove(char *name)
|
int x11_remove(char *name)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue