Skip to content

Commit b391447

Browse files
fix for windows sake
1 parent fedbffd commit b391447

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/tests/cases/test_tdd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -957,7 +957,7 @@ FOSSIL_TEST(c_assume_run_of_bitwise_true) {
957957
ASSUME_ITS_BITWISE_TRUE(a & 0x80);
958958
ASSUME_ITS_BITWISE_TRUE(b & 0x01);
959959
ASSUME_ITS_BITWISE_TRUE(c == 0xFF);
960-
ASSUME_ITS_BITWISE_TRUE(~d == 0xFF);
960+
ASSUME_ITS_BITWISE_TRUE((uint8_t)(~d) == 0xFF);
961961
}
962962

963963
FOSSIL_TEST(c_assume_run_of_bitwise_false) {

0 commit comments

Comments
 (0)