Shadowing variable (#40)
This commit is contained in:
parent
2f574962bc
commit
ca090fd144
4
ui.go
4
ui.go
@ -127,12 +127,12 @@ func (win *Win) print(x, y int, fg, bg termbox.Attribute, s string) {
|
|||||||
bg = termbox.ColorDefault
|
bg = termbox.ColorDefault
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
i, err := strconv.Atoi(t)
|
n, err := strconv.Atoi(t)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Printf("converting escape code: %s", err)
|
log.Printf("converting escape code: %s", err)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
nums = append(nums, i)
|
nums = append(nums, n)
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, n := range nums {
|
for _, n := range nums {
|
||||||
|
Loading…
Reference in New Issue
Block a user