Skip to content

Commit 9619dd9

Browse files
committed
fix ./v self build errors
1 parent 880d8bd commit 9619dd9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vlib/strings/builder.c.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ pub fn (mut b Builder) indent(s string, param IndentParam) {
384384
mut string_char := `\0`
385385
mut at_line_start := true
386386
for i := 0; i < s.len; i++ {
387-
c := s[i]
387+
c := rune(s[i])
388388
match state {
389389
// Normal state: process characters outside of string literals
390390
.normal {

0 commit comments

Comments
 (0)