src/x86/ffiw64.c: Don't assign a "char *" to an "unsigned char *"
Declare a local variable to match the type of the struct field assigned to it, rather than adding unsigned to the type. Fixes a -Wpointer-sign warning.
This commit is contained in:
@@ -190,7 +190,7 @@ ffi_prep_closure_loc (ffi_closure* closure,
|
|||||||
/* nopl (%rax) */
|
/* nopl (%rax) */
|
||||||
0x0f, 0x1f, 0x00
|
0x0f, 0x1f, 0x00
|
||||||
};
|
};
|
||||||
unsigned char *tramp = closure->tramp;
|
char *tramp = closure->tramp;
|
||||||
|
|
||||||
if (cif->abi != FFI_WIN64)
|
if (cif->abi != FFI_WIN64)
|
||||||
return FFI_BAD_ABI;
|
return FFI_BAD_ABI;
|
||||||
|
|||||||
Reference in New Issue
Block a user