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

Fix a typo in the type of the fchown() function in os_unix.c.

FossilOrigin-Name: bfbfe05b81919ecc3d6e7be4c24994f795f16582
This commit is contained in:
dan
2012-02-13 08:50:23 +00:00
parent 23c4b97329
commit d3eaebd414
3 changed files with 9 additions and 9 deletions

View File

@@ -420,7 +420,7 @@ static struct unix_syscall {
#define osRmdir ((int(*)(const char*))aSyscall[19].pCurrent)
{ "fchown", (sqlite3_syscall_ptr)fchown, 0 },
#define osFchown ((int(*)(const char*,uid_t,gid_t))aSyscall[20].pCurrent)
#define osFchown ((int(*)(int,uid_t,gid_t))aSyscall[20].pCurrent)
}; /* End of the overrideable system calls */