Fix test failure on char-unsigned-by-default architectures (eg. ARM)
(from http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=722115 )
This commit is contained in:
parent
407c7a10f5
commit
4d931b6109
@ -96,7 +96,7 @@ struct naObj {
|
|||||||
#define MAX_STR_EMBLEN 15
|
#define MAX_STR_EMBLEN 15
|
||||||
struct naStr {
|
struct naStr {
|
||||||
GC_HEADER;
|
GC_HEADER;
|
||||||
char emblen; /* [0-15], or -1 to indicate "not embedded" */
|
signed char emblen; /* [0-15], or -1 to indicate "not embedded" */
|
||||||
unsigned int hashcode;
|
unsigned int hashcode;
|
||||||
union {
|
union {
|
||||||
unsigned char buf[16];
|
unsigned char buf[16];
|
||||||
|
Loading…
Reference in New Issue
Block a user