Fix a 32-bit formatting warning

This commit is contained in:
Nick Mathewson 2017-11-06 10:16:10 -05:00
parent c80293706f
commit bebdd91058
1 changed files with 1 additions and 1 deletions

View File

@ -687,7 +687,7 @@ scheduler_bug_occurred(const channel_t *chan)
chan->global_identifier,
channel_state_to_string(chan->state),
chan->scheduler_state, circuitmux_num_cells(chan->cmux),
outbuf_len);
(unsigned long)outbuf_len);
}
{