1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

compiler: use *char() cast in C functions to afix warnings

This commit is contained in:
Alexander Medvednikov
2019-09-15 15:12:11 +03:00
parent 897db23203
commit 3e923871cf
3 changed files with 8 additions and 7 deletions

View File

@@ -276,7 +276,7 @@ pub fn (b []byte) hex() string {
mut hex := malloc(b.len*2+1)
mut ptr := &hex[0]
for i := 0; i < b.len ; i++ {
ptr += C.sprintf(ptr, '%02x', b[i])
ptr += C.sprintf(*char(ptr), '%02x', b[i])
}
return string(hex)
}