Use a more appropriate printf format for size_t.
This should unbreak the tinderbox build (64bit architectures).
This commit is contained in:
parent
1996e53039
commit
531d197d81
@ -1226,7 +1226,7 @@ midisynth_writeraw(void *n, uint8_t *buf, size_t len)
|
||||
|
||||
used = MIN(MIDIQ_AVAIL(m->outq), len);
|
||||
used = MIN(used, MIDI_WSIZE);
|
||||
MIDI_DEBUG(5,printf("midi_synth: resid %d len %jd avail %jd\n",
|
||||
MIDI_DEBUG(5,printf("midi_synth: resid %zu len %jd avail %jd\n",
|
||||
len, (intmax_t)MIDIQ_LEN(m->outq),
|
||||
(intmax_t)MIDIQ_AVAIL(m->outq)));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user