1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Fix an operator precedence problem on the [1d8086902e] check-in.

FossilOrigin-Name: 4f5f3aebe81c3cbe539db3e33ec38fa3de47e90b
This commit is contained in:
drh
2013-03-06 01:41:53 +00:00
parent 77dfe91662
commit cfc176973e
3 changed files with 9 additions and 9 deletions

View File

@@ -554,7 +554,7 @@ static int robust_open(const char *z, int f, mode_t m){
struct stat statbuf;
if( osFstat(fd, &statbuf)==0
&& statbuf.st_size==0
&& statbuf.st_mode&0777!=m
&& (statbuf.st_mode&0777)!=m
){
osFchmod(fd, m);
}