Commit
cf3fe1eed ("MINOR: mux-h2/traces: print the size of the DATA
frames") added the size of the DATA frame to the traces. Unfortunately
it uses ullong instead of ulong to cast a pointer, which breaks the
build on 32-bit platforms. Let's just switch it to ulong which works
on both.
}
if ((mask & H2_EV_RX_DATA) && level == TRACE_LEVEL_DATA)
- chunk_appendf(&trace_buf, " data=%llu", (ullong)a4);
+ chunk_appendf(&trace_buf, " data=%lu", (ulong)a4);
}
/* Let's dump decoded requests and responses right after parsing. They