mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.1.0744: compiler warnings for signed/unsigned strings
Problem: Compiler warnings for signed/unsigned strings. Solution: A few more type cast fixes.
This commit is contained in:
@@ -1562,11 +1562,11 @@ Eval(str)
|
||||
SV*
|
||||
Blob(SV* sv)
|
||||
PREINIT:
|
||||
STRLEN len;
|
||||
char *s;
|
||||
int i;
|
||||
char buf[3];
|
||||
SV* newsv;
|
||||
STRLEN len;
|
||||
char *s;
|
||||
unsigned i;
|
||||
char buf[3];
|
||||
SV* newsv;
|
||||
|
||||
CODE:
|
||||
s = SvPVbyte(sv, len);
|
||||
|
Reference in New Issue
Block a user