1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Avoid compiler warnings on windows

include/config-win.h:
  Added missing typedef ssize_t
  Added some other useful defines from MySQL 6.0
unittest/mysys/waiting_threads-t.c:
  Fixed link failure for 'ftruncate' on Windows
This commit is contained in:
Michael Widenius
2009-03-20 13:41:30 +02:00
parent 2611d3c002
commit 4dc093cee4
3 changed files with 38 additions and 9 deletions

View File

@@ -1622,7 +1622,7 @@ int compare_files2(File fd1, const char* filename2)
{
int error= RESULT_OK;
File fd2;
my_off_t fd1_length, fd2_length;
size_t fd1_length, fd2_length;
DYNAMIC_STRING fd1_result, fd2_result;
if ((fd2= my_open(filename2, O_RDONLY, MYF(0))) < 0)
@@ -1631,8 +1631,8 @@ int compare_files2(File fd1, const char* filename2)
die("Failed to open second file: '%s'", filename2);
}
fd1_length= my_seek(fd1, 0, SEEK_END, MYF(0));
fd2_length= my_seek(fd2, 0, SEEK_END, MYF(0));
fd1_length= (size_t) my_seek(fd1, 0, SEEK_END, MYF(0));
fd2_length= (size_t) my_seek(fd2, 0, SEEK_END, MYF(0));
if (init_dynamic_string(&fd1_result, 0, fd1_length, 0) ||
init_dynamic_string(&fd2_result, 0, fd2_length, 0))