1
0
Fork 0
forked from len0rd/rockbox

Fixed file creation test case for new flags.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2836 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2002-11-12 09:04:53 +00:00
parent 42510d9e78
commit 8a727cecdb

View file

@ -96,7 +96,7 @@ int dbg_mkfile(char* name, int num)
int x=0;
bool stop = false;
fd = open(name,O_WRONLY);
fd = creat(name,O_WRONLY);
if (fd<0) {
DEBUGF("Failed creating file\n");
return -1;