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

Use char as datatype for the byte that are read with my_fgetc, fixes problem with

mysqltest.test on Solaris and Mac. write_file produced nice files with all zeroes.
This commit is contained in:
msvensson@shellback.(none)
2006-10-14 17:09:06 +02:00
parent d8b9f7cb0e
commit a9e60bab29
2 changed files with 2 additions and 2 deletions

View File

@@ -1810,7 +1810,7 @@ void my_ungetc(int c)
void read_until_delimiter(DYNAMIC_STRING *ds,
DYNAMIC_STRING *ds_delimiter)
{
int c;
char c;
DBUG_ENTER("read_until_delimiter");
DBUG_PRINT("enter", ("delimiter: %s, length: %d",
ds_delimiter->str, ds_delimiter->length));