aboutsummaryrefslogtreecommitdiff
path: root/exporter/src/bin/yaml.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exporter/src/bin/yaml.rs')
-rw-r--r--exporter/src/bin/yaml.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exporter/src/bin/yaml.rs b/exporter/src/bin/yaml.rs
index 4ef8933..bc9e57e 100644
--- a/exporter/src/bin/yaml.rs
+++ b/exporter/src/bin/yaml.rs
@@ -9,7 +9,7 @@ use unity_tools::{classes::HValue, serialized_file::SerializedFile, unityfs::Uni
fn main() -> anyhow::Result<()> {
env_logger::init_from_env("LOG");
let file = BufReader::new(File::open(args().nth(1).unwrap())?);
- let mut fs = UnityFS::open(file)?;
+ let fs = UnityFS::open(file)?;
let filter = args().nth(2);
let node = fs.find_main_file().unwrap().to_owned();