Whoops, that '==' should be '='.

This commit is contained in:
Ryan C. Gordon 2016-03-30 01:31:24 -04:00
parent 735b1cb66b
commit 9bdb8becb1

View File

@ -207,7 +207,7 @@ static void DirectoryLockOff(void)
// if lock is open // if lock is open
if (_hLock!=NULL) { if (_hLock!=NULL) {
fclose(_hLock); fclose(_hLock);
_hLock == NULL; _hLock = NULL;
} }
unlink(_fnmLock); unlink(_fnmLock);
} }