Remove unused variable in fixed-point write procedure

This commit is contained in:
diego
2026-08-14 13:21:03 +02:00
parent e575197403
commit ac7110e098

View File

@@ -148,7 +148,7 @@ write :: proc(dst: []byte, x: $T/Fixed($Backing, $Fraction_Width)) -> string {
}
}
n := copy(dst, buf[:i])
copy(dst, buf[:i])
return string(dst[:i])
}