mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
Given the statement "a == b ? c : d;" , the WorkShop 5.0 compiler expects c & d to be of the same type.
This commit is contained in:
parent
049a2966bf
commit
b85f37fcb6
@ -366,6 +366,9 @@ nsLocalFile::OpenANSIFileDesc(const char *mode, FILE * *_retval)
|
||||
static int exclusive_create(const char * path, mode_t mode) {
|
||||
return open(path, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, mode);
|
||||
}
|
||||
static int exclusive_mkdir(const char * path, mode_t mode) {
|
||||
return mkdir(path, mode);
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsLocalFile::Create(PRUint32 type, PRUint32 permissions)
|
||||
@ -381,7 +384,7 @@ nsLocalFile::Create(PRUint32 type, PRUint32 permissions)
|
||||
#else
|
||||
int (*creationFunc)(const char *, mode_t) =
|
||||
#endif
|
||||
type == NORMAL_FILE_TYPE ? exclusive_create : mkdir;
|
||||
type == NORMAL_FILE_TYPE ? exclusive_create : exclusive_mkdir;
|
||||
|
||||
result = creationFunc((const char *)mPath, permissions);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user