style: Ignored allocation errors where possible.

This commit is contained in:
2026-06-25 17:27:26 -04:00
parent 13e9495642
commit 6fa68d10b1
5 changed files with 17 additions and 19 deletions

View File

@@ -123,7 +123,7 @@ new_config :: proc(
for priv in private_key_paths {
// TODO: Is this bad?
priv_key := strings.clone(priv)
pub, _ := strings.concatenate([]string{priv_key, ".pub"})
pub := strings.concatenate([]string{priv_key, ".pub"})
append(&keys, SshKeyPair{private = priv_key, public = pub})
}