1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Bug#22828 complementary patch:

- 'false' not defined in C, use FALSE instead.
This commit is contained in:
thek@kpdesk.mysql.com
2006-11-02 11:55:41 +01:00
parent 5f2424ead7
commit d4b3cefb23

View File

@@ -101,7 +101,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)
{