From 1da2f21763e395d93f74a18c994c3335696d19eb Mon Sep 17 00:00:00 2001 From: "sashakoshka@tebibyte.media" Date: Fri, 4 Oct 2024 23:54:51 -0400 Subject: [PATCH] Figured out why Not something we need to worry about though --- locale/+linux.ha | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locale/+linux.ha b/locale/+linux.ha index b57c56c..951d13d 100644 --- a/locale/+linux.ha +++ b/locale/+linux.ha @@ -80,7 +80,7 @@ fn get_locale_conf() []str = { case let file: io::file => yield file; case => return locale_conf; }; - defer io::close(file)!; // when the hell does closing a file fail???? + defer io::close(file)!; let scanner = bufio::newscanner(file); defer bufio::finish(&scanner);