aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/gnunet-helper-audio-record.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/conversation/gnunet-helper-audio-record.c')
-rw-r--r--src/conversation/gnunet-helper-audio-record.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/conversation/gnunet-helper-audio-record.c b/src/conversation/gnunet-helper-audio-record.c
index 31943810f..73f4cfda3 100644
--- a/src/conversation/gnunet-helper-audio-record.c
+++ b/src/conversation/gnunet-helper-audio-record.c
@@ -405,8 +405,8 @@ stream_read_callback (pa_stream * s,
405 const void *data; 405 const void *data;
406 406
407 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 407 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
408 "Got %u/%u bytes of PCM data\n", 408 "Got %u/%d bytes of PCM data\n",
409 length, 409 (unsigned int) length,
410 pcm_length); 410 pcm_length);
411 411
412 GNUNET_assert (NULL != s); 412 GNUNET_assert (NULL != s);
@@ -718,8 +718,8 @@ ogg_init ()
718 if (NULL == commentspacket) 718 if (NULL == commentspacket)
719 { 719 {
720 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 720 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
721 _("Failed to allocate %d bytes for second packet\n"), 721 _("Failed to allocate %u bytes for second packet\n"),
722 commentspacket_len); 722 (unsigned int) commentspacket_len);
723 exit (5); 723 exit (5);
724 } 724 }
725 725