ref: 24968037296bdb623fc5d47a699c226c4122d213
parent: 1517e70fbb0a94e75e9c2032a92f0b90b4026913
author: Jean-Baptiste Kempf <jb@videolan.org>
date: Wed Feb 13 20:49:28 EST 2013
Win32: fix signedness warning
--- a/src/ioctl.h
+++ b/src/ioctl.h
@@ -120,7 +120,7 @@
struct SRB_ExecSCSICmd ssc; \
uint8_t p_buffer[ (SIZE)+1 ]; \
memset( &ssc, 0, sizeof( struct SRB_ExecSCSICmd ) ); \
- ssc.SRB_BufPointer = (char *)p_buffer; \
+ ssc.SRB_BufPointer = (unsigned char *)p_buffer; \
ssc.SRB_BufLen = (SIZE); \
WinInitSSC( &ssc, (TYPE) );
#endif