We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc66782 commit 83f95baCopy full SHA for 83f95ba
src/WARDuino/WARDuino.cpp
@@ -96,8 +96,8 @@ Type *get_block_type(Module *m, uint8_t type) {
96
}
97
} else {
98
if ((uint32_t)type_s >= m->type_count) {
99
- FATAL("block_type index out of bounds: %lld >= %u\n", type_s,
100
- m->type_count);
+ FATAL("block_type index out of bounds: %lld >= %u\n",
+ (long long)type_s, m->type_count);
101
return nullptr;
102
103
return &m->types[type_s];
0 commit comments