aboutsummaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2016-01-26 00:12:42 +0000
committerdrh <drh@noemail.net>2016-01-26 00:12:42 +0000
commitf0fc9929369cda0c7416174d43a299188b8beabf (patch)
treea3dfd8f447070fb51ae70d5f047d28dd6d6c502d /src/os_unix.c
parentaf1b36b1df592aa8ecf1fd8799db7e415688ed6e (diff)
downloadsqlite-f0fc9929369cda0c7416174d43a299188b8beabf.tar.gz
sqlite-f0fc9929369cda0c7416174d43a299188b8beabf.zip
Remove an unused variable.
FossilOrigin-Name: 1c2656c1d37906230edc142d3a4253b16b6e925f
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index a3bb45bdb..cdbcd2c8e 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -5981,7 +5981,6 @@ static int unixFullPathname(
int rc = SQLITE_OK;
int nByte;
int nLink = 1; /* Number of symbolic links followed so far */
- int bLink; /* True for a symbolic link */
const char *zIn = zPath; /* Input path for each iteration of loop */
char *zDel = 0;