Figured out why

Not something we need to worry about though
This commit is contained in:
Sasha Koshka 2024-10-04 23:54:51 -04:00
parent e0868e7554
commit 1da2f21763

View File

@ -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);