aboutsummaryrefslogtreecommitdiff
path: root/crates/nasm/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/nasm/src/main.rs')
-rw-r--r--crates/nasm/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/nasm/src/main.rs b/crates/nasm/src/main.rs
index 4ec4f59..7160137 100644
--- a/crates/nasm/src/main.rs
+++ b/crates/nasm/src/main.rs
@@ -295,7 +295,7 @@ fn main() {
// Select the input stream and build the source object.
let path = Path::new(&args.file);
let Ok(input) = File::open(path) else {
- die(format!("failed to open the given file '{}'", &args.file));
+ die(format!("failed to open the given file '{}'", args.file));
return;
};
let source = match path.parent() {