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

Fix a harmless compiler warning introduced by the previous check-in.

FossilOrigin-Name: a8a042a751557d06bf04455ed7629cb29adcd87f
This commit is contained in:
drh
2012-02-13 20:28:15 +00:00
parent 8c815d14f8
commit ef595984ec
3 changed files with 8 additions and 8 deletions

View File

@@ -530,7 +530,7 @@ static const char *unixNextSystemCall(sqlite3_vfs *p, const char *zName){
static int robust_open(const char *z, int f, mode_t m){
int rc;
mode_t m2;
mode_t origM;
mode_t origM = 0;
if( m==0 ){
m2 = SQLITE_DEFAULT_FILE_PERMISSIONS;
}else{