Skip to content

Commit

Permalink
Compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
JustusAdam committed Nov 19, 2023
1 parent 564afa9 commit cb53939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kani-driver/src/call_cbmc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ impl VerificationResult {
}
Err(exit_status) => {
let verification_result = console::style("FAILED").red();
let explanation = if exit_status == 137 {
let explanation = if *exit_status == 137 {
"CBMC appears to have run out of memory. You may want to rerun your proof in \
an environment with additional memory or use stubbing to reduce the size of the \
code the verifier reasons about.\n"
Expand Down

0 comments on commit cb53939

Please sign in to comment.