Skip to content

Commit

Permalink
Satisfy clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ZippyMagician committed Jan 22, 2021
1 parent 9f44312 commit 485968f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ fn run_cmd(
let left: i32 = to_numeric(env, ast, args[0]);
let right: i32 = to_numeric(env, ast, args[1]);

let mut num = 0b00000000;
let mut num = 0;
if left == right {
num |= 0b10;
if right == 0 {
Expand Down

0 comments on commit 485968f

Please sign in to comment.