mirror of
https://github.com/MariaDB/server.git
synced 2026-04-23 08:45:33 +02:00
Bug#22828 complementary patch:
- 'false' not defined in C, use FALSE instead. mysys/my_lock.c: Fixed error in windows built: 'false' not defined in C, use FALSE instead.
This commit is contained in:
parent
2d1215f4c6
commit
4868875cec
1 changed files with 1 additions and 1 deletions
|
|
@ -111,7 +111,7 @@ int my_lock(File fd, int locktype, my_off_t start, my_off_t length,
|
|||
#elif defined(HAVE_LOCKING)
|
||||
/* Windows */
|
||||
{
|
||||
my_bool error= false;
|
||||
my_bool error= FALSE;
|
||||
pthread_mutex_lock(&my_file_info[fd].mutex);
|
||||
if (MyFlags & MY_SEEK_NOT_DONE)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue