Skip to content

Commit 3945c78

Browse files
committed
Change variable names for readability
1 parent a22c860 commit 3945c78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ fn main() -> Result<(), Error> {
2525
return Err(Error::new(HRESULT::default(), "Provide one item per field"))
2626
}
2727

28-
for string in &mut args {
29-
string.push("\0")
28+
for arg in &mut args {
29+
arg.push("\0")
3030
}
3131

3232
let dll_name = args[2].clone();

0 commit comments

Comments
 (0)