mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-06-28 16:41:01 +03:00
invalidPrintfArgType_sint
This commit is contained in:
parent
52b0076f4f
commit
9b9df1b397
@ -320,7 +320,7 @@ void ComponentRepeat::wireRepeats(GlushkovBuildState &bs) {
|
||||
}
|
||||
}
|
||||
|
||||
DEBUG_PRINTF("wiring up %d optional repeats\n", copies - m_min);
|
||||
DEBUG_PRINTF("wiring up %u optional repeats\n", copies - m_min);
|
||||
for (u32 rep = MAX(m_min, 1); rep < copies; rep++) {
|
||||
vector<PositionInfo> lasts = m_lasts[rep - 1];
|
||||
if (rep != m_min) {
|
||||
|
@ -46,7 +46,7 @@ UNUSED
|
||||
static
|
||||
void mmbit_display(const u8 *bits, u32 total_bits) {
|
||||
for (u32 i = 0; i < mmbit_size(total_bits); i += 8) {
|
||||
printf("block %d:", i / 8);
|
||||
printf("block %u:", i / 8);
|
||||
for (s32 j = 7; j >= 0; j--) {
|
||||
u8 a = (*(bits + i + j));
|
||||
printf(" %02x", a);
|
||||
@ -72,7 +72,7 @@ UNUSED
|
||||
static
|
||||
void mmbit_display_comp(const u8 *bits, u32 comp_size) {
|
||||
for (u32 i = 0; i < comp_size; i += 8) {
|
||||
printf("block %d:", i / 8);
|
||||
printf("block %u:", i / 8);
|
||||
for (s32 j = 7; j >= 0; j--) {
|
||||
u8 a = (*(bits + i + j));
|
||||
printf(" %02x", a);
|
||||
|
Loading…
x
Reference in New Issue
Block a user