bug 498394 - wince shunt's unlink has wrong return value r=dougt

This commit is contained in:
Brad Lassey 2009-06-18 07:34:12 -04:00
parent 65d54cc638
commit 8609331e56

View File

@ -160,7 +160,7 @@ int _unlink(const char *filename)
strlen(filename)+1,
wname,
MAX_PATH );
return DeleteFileW(wname);
return DeleteFileW(wname)?0:-1;
}
void abort(void)