prefix var

This commit is contained in:
notohh 2024-06-01 14:42:49 -04:00
parent dd54e04c18
commit fa2181af70
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -15,7 +15,7 @@ fn main() -> Result<(), Error> {
if args.write_to_file {
let f = &mut File::create(args.file);
let file = match f {
let _file = match f {
Ok(file) => file.write_all(string_output.as_bytes()),
Err(e) => panic!("cannot create file: {:?}", e),
};