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

Fix a typo in the robust_flock() macro for systems without EINTR.

FossilOrigin-Name: af9ba2a6d2c37915e799eec52bb827de46afd34d
This commit is contained in:
drh
2011-02-23 14:00:12 +00:00
parent ff81231e62
commit 5c81927c9d
3 changed files with 11 additions and 11 deletions

View File

@@ -1813,7 +1813,7 @@ static int robust_flock(int fd, int op){
return rc;
}
#else
# define robust_flock(a,b) fclose(a,b)
# define robust_flock(a,b) flock(a,b)
#endif