From: dan Date: Mon, 13 Feb 2012 08:50:23 +0000 (+0000) Subject: Fix a typo in the type of the fchown() function in os_unix.c. X-Git-Tag: version-3.7.11~48 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d3eaebd4146feb550304443430f4f57ce8bb5245;p=thirdparty%2Fsqlite.git Fix a typo in the type of the fchown() function in os_unix.c. FossilOrigin-Name: bfbfe05b81919ecc3d6e7be4c24994f795f16582 --- diff --git a/manifest b/manifest index c0a205521f..7059003de2 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Make\sfchown()\san\soverrideable\ssystem\scall\sin\sos_unix.c. -D 2012-02-11T23:55:15.455 +C Fix\sa\stypo\sin\sthe\stype\sof\sthe\sfchown()\sfunction\sin\sos_unix.c. +D 2012-02-13T08:50:23.792 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in 3f79a373e57c3b92dabf76f40b065e719d31ac34 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -166,7 +166,7 @@ F src/os.c e1acdc09ff3ac2412945cca9766e2dcf4675f31c F src/os.h 59beba555b65a450bd1d804220532971d4299f60 F src/os_common.h 92815ed65f805560b66166e3583470ff94478f04 F src/os_os2.c 4a75888ba3dfc820ad5e8177025972d74d7f2440 -F src/os_unix.c 55fbf23bb9807412a6ec95c5cc489222e56a4d58 +F src/os_unix.c fd5875e602286c8ecd96a0049bd7869c30721df0 F src/os_win.c 5ac061ae1326a71500cee578ed0fd9113b4f6a37 F src/pager.c 2d892f7b901a8867a33bc21742086165a3a99af8 F src/pager.h a435da8421dc7844b7f9c7f37b636c160c50208a @@ -989,7 +989,7 @@ F tool/tostr.awk e75472c2f98dd76e06b8c9c1367f4ab07e122d06 F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f F tool/warnings-clang.sh 9f406d66e750e8ac031c63a9ef3248aaa347ef2a F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381 -P 3ab89e255d1f2f8004d3256515ac43f74e57f39b -R c7e080a7342ae25512a1d89fb1e6a36a -U drh -Z 57dd073c92c9b4505dfd0c4c6af07210 +P 98efac9630ca96ba0497c8e206dc5022612ff381 +R c28baf50a89887974b43cddbc49224fb +U dan +Z fe60136d21d83b01836f509b8ebeab38 diff --git a/manifest.uuid b/manifest.uuid index f192e997a1..b37b52966d 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -98efac9630ca96ba0497c8e206dc5022612ff381 \ No newline at end of file +bfbfe05b81919ecc3d6e7be4c24994f795f16582 \ No newline at end of file diff --git a/src/os_unix.c b/src/os_unix.c index c6f71adc8a..31fb1b40d9 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -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 */