Skip to content

Commit

Permalink
Fix build error for proofs
Browse files Browse the repository at this point in the history
  • Loading branch information
bradleysmith23 committed Oct 11, 2023
1 parent b63f7a2 commit 4c15cdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/cbmc/proofs.c
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ void proof_Jobs_UpdateMsg( void )
__CPROVER_assume( bufferLength <= 64 );
buffer = malloc( bufferLength );

__CPROVER_assume( status >= QUEUED && status <= REJECTED );
__CPROVER_assume( status >= 0 && status <= 4 );

ret = Jobs_UpdateMsg( status,
expectedVersion,
Expand Down

0 comments on commit 4c15cdf

Please sign in to comment.