diff options
Diffstat (limited to 'type_decoder.c')
-rw-r--r-- | type_decoder.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/type_decoder.c b/type_decoder.c index 6ed2787..bbf1f64 100644 --- a/type_decoder.c +++ b/type_decoder.c @@ -114,9 +114,9 @@ static PyObject *Decoder_put(PyObject *self, PyObject *args) } pdo = l->data; - srd_spew("Instance %s put %d-%d %s on oid %d.", di->instance_id, - start_sample, end_sample, OUTPUT_TYPES[pdo->output_type], - output_id); + srd_spew("Instance %s put %" PRIu64 "-%" PRIu64 " %s on oid %d.", + di->instance_id, start_sample, end_sample, + OUTPUT_TYPES[pdo->output_type], output_id); if (!(pdata = g_try_malloc0(sizeof(struct srd_proto_data)))) return NULL; |