Commit 3f169315 authored by thek@kpdesk.mysql.com's avatar thek@kpdesk.mysql.com

Bug#22828 complementary patch:

- 'false' not defined in C, use FALSE instead.
parent df82f584
...@@ -111,7 +111,7 @@ int my_lock(File fd, int locktype, my_off_t start, my_off_t length, ...@@ -111,7 +111,7 @@ int my_lock(File fd, int locktype, my_off_t start, my_off_t length,
#elif defined(HAVE_LOCKING) #elif defined(HAVE_LOCKING)
/* Windows */ /* Windows */
{ {
my_bool error= false; my_bool error= FALSE;
pthread_mutex_lock(&my_file_info[fd].mutex); pthread_mutex_lock(&my_file_info[fd].mutex);
if (MyFlags & MY_SEEK_NOT_DONE) if (MyFlags & MY_SEEK_NOT_DONE)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment