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

builtin: [1000]u8 fix

This commit is contained in:
Alexander Medvednikov 2022-04-15 14:48:39 +03:00
parent 014c3c97f0
commit b49d873217

View File

@ -100,7 +100,7 @@ fn print_backtrace_skipping_top_frames_linux(skipframes int) bool {
eprintln(sframe)
continue
}
buf := [1000]byte{}
buf := [1000]u8{}
mut output := ''
unsafe {
bp := &buf[0]