src/x86/ffiw64.c: Don't assign a "char *" to an "unsigned char *"
authorJosh Triplett <josh@joshtriplett.org>
Sun, 26 Jul 2015 23:23:55 +0000 (16:23 -0700)
committerJosh Triplett <josh@joshtriplett.org>
Mon, 27 Jul 2015 00:18:16 +0000 (17:18 -0700)
commit6de51f3e04e496901ea1bd8f9b44f75c9f01b599
treec0f692ef44853b8b6e8c8712400c87b98ee93ba5
parenteaa59755fcbb692a8cb763c7f9f24a350aadbd30
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.
src/x86/ffiw64.c