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

fix linux warnings in generated C code

This commit is contained in:
Nicolas Sauzede
2020-03-01 13:26:09 +01:00
committed by GitHub
parent 7a499b3cd3
commit becd87141c
5 changed files with 17 additions and 20 deletions

View File

@@ -108,7 +108,7 @@ fn print_backtrace_skipping_top_frames_linux(skipframes int) bool {
}
buf := [1000]byte
mut output := ''
for C.fgets(buf, 1000, f) != 0 {
for C.fgets(charptr(buf), 1000, f) != 0 {
output += tos(buf, vstrlen(buf))
}
output = output.trim_space() + ':'

View File

@@ -156,17 +156,14 @@ pub fn (n int) hex() string {
pub fn (n i64) hex() string {
len := if n >= 0 { n.str().len + 3 } else { 19 }
hex := malloc(len)
// QTODO
//count := C.sprintf(charptr(hex), '0x%'C.PRIx64, n)
count := C.sprintf(hex, '0x%x', n)
count := C.sprintf(charptr(hex), '0x%'C.PRIx64, n)
return tos(hex, count)
}
pub fn (n u64) hex() string {
len := if n >= 0 { n.str().len + 3 } else { 19 }
len := if n > 0 { n.str().len + 3 } else { 19 }
hex := malloc(len)
//count := C.sprintf(charptr(hex), '0x%'C.PRIx64, n)
count := C.sprintf((hex), '0x%lx', n)
count := C.sprintf(charptr(hex), '0x%'C.PRIx64, n)
return tos(hex, count)
}

View File

@@ -160,7 +160,7 @@ fn (m mut map) rehash(old_range_cap u32) {
memory := calloc(probe_hash_bytes + key_value_bytes)
mut new_key_values := &KeyValue(memory)
mut new_probe_hash := &u32(memory + key_value_bytes)
for i in 0 .. (old_range_cap + 1) {
for i := u32(0); i < old_range_cap + 1; i++ {
if m.probe_hash[i] != 0 {
mut kv := m.key_values[i]
hash := wyhash.wyhash_c(kv.key.str, u64(kv.key.len), 0)
@@ -210,7 +210,7 @@ fn (m mut map) cached_rehash(old_range_cap u32) {
memory := calloc(probe_hash_bytes + key_value_bytes)
mut new_probe_hash := &u32(memory + key_value_bytes)
mut new_key_values := &KeyValue(memory)
for i in 0 .. (old_range_cap + 1) {
for i := u32(0); i < old_range_cap + 1; i++ {
if m.probe_hash[i] != 0 {
mut kv := m.key_values[i]
mut probe_hash := m.probe_hash[i]
@@ -332,7 +332,7 @@ pub fn (m &map) keys() []string {
return keys
}
mut j := 0
for i in 0 .. (m.range_cap + 1) {
for i := u32(0); i < m.range_cap + 1; i++ {
if m.probe_hash[i] != 0 {
keys[j] = m.key_values[i].key
j++