aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crates/nasm/src/main.rs2
-rw-r--r--crates/readrom/src/main.rs2
-rw-r--r--lib/xixanta/src/object.rs2
3 files changed, 3 insertions, 3 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() {
diff --git a/crates/readrom/src/main.rs b/crates/readrom/src/main.rs
index 16dfa90..07ca349 100644
--- a/crates/readrom/src/main.rs
+++ b/crates/readrom/src/main.rs
@@ -141,7 +141,7 @@ fn main() {
let args = parse_arguments();
let Ok(mut input) = File::open(&args.file) else {
- die(format!("failed to open the given file '{}'", &args.file));
+ die(format!("failed to open the given file '{}'", args.file));
return;
};
diff --git a/lib/xixanta/src/object.rs b/lib/xixanta/src/object.rs
index b263469..6209afd 100644
--- a/lib/xixanta/src/object.rs
+++ b/lib/xixanta/src/object.rs
@@ -420,7 +420,7 @@ impl Context {
let mut ax = String::with_capacity(name.len());
// Clear the context stack as we will set it manually.
- self.stack.truncate(0);
+ self.stack.clear();
// If the given name turns out to be just the global one, skip the push
// for the stack.