Commit ca5876ae authored by Lev Walkin's avatar Lev Walkin

proper format qualifiers

parent 88e0a778
...@@ -24,9 +24,9 @@ check_next(char *xerbuf, int expected_chunk_size, pxer_chunk_type_e expected_chu ...@@ -24,9 +24,9 @@ check_next(char *xerbuf, int expected_chunk_size, pxer_chunk_type_e expected_chu
ch_size = xer_next_token(&state, xerbuf, xerbuf_len, &ch_type); ch_size = xer_next_token(&state, xerbuf, xerbuf_len, &ch_type);
printf("[%s]:%d\n", xerbuf, xerbuf_len); printf("[%s]:%d\n", xerbuf, xerbuf_len);
printf("chunk sizes: %d vs %d, chunk types: %d vs %d\n", printf("chunk sizes: %ld vs %ld, chunk types: %d vs %ld\n",
ch_size, expected_chunk_size, (long)ch_size, (long)expected_chunk_size,
ch_type, expected_chunk_type ch_type, (long)expected_chunk_type
); );
if(expected_chunk_type == -1) { if(expected_chunk_type == -1) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment