mirror of
https://github.com/MariaDB/server.git
synced 2026-05-06 15:15:34 +02:00
Fix for Bug#6024 "Test "client_test" fails in 4.1.6-gamma build (1)":
let's not assume that char is signed (its signedness is not defined). The server was also affected by the wrong typedef. include/my_global.h: Fix for Bug#6024 "Test "client_test" fails in 4.1.6-gamma build (1)": let's not assume that char is signed (its signedness is not defined). libmysql/libmysql.c: Fix for Bug#6024 "Test "client_test" fails in 4.1.6-gamma build (1)": let's not assume that char is signed (its signedness is not defined).
This commit is contained in:
parent
e8bc4e16e0
commit
77d7398e0b
2 changed files with 5 additions and 4 deletions
|
|
@ -713,7 +713,7 @@ typedef void *gptr; /* Generic pointer */
|
|||
typedef char *gptr; /* Generic pointer */
|
||||
#endif
|
||||
#ifndef HAVE_INT_8_16_32
|
||||
typedef char int8; /* Signed integer >= 8 bits */
|
||||
typedef signed char int8; /* Signed integer >= 8 bits */
|
||||
typedef short int16; /* Signed integer >= 16 bits */
|
||||
#endif
|
||||
#ifndef HAVE_UCHAR
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue