Commit c08cd14
authored
tests: fix test failures on upcoming
Upcoming `gcc-14` enabled a few warnings into errors, like
`-Wint-conversion`. This caused `shadow` build to fail as:
src/extended/extended.c:13:9: error:
initialization of ‘int’ from ‘void *’ makes integer from pointer
without a cast [-Wint-conversion]
13 | NULL,
| ^~~~
The change fixes `int ml_flags;` to take `int` instead of pointer.gcc-14 (#671)1 parent dc8e254 commit c08cd14
File tree
3 files changed
+3
-3
lines changed- tests/masonry/builders/fixtures
- extended_with_no_setup/extended
- extended/extended
- src_extended/src/extended
3 files changed
+3
-3
lines changedLines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
0 commit comments