aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/gnunet-helper-audio-record-gst.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-03-27 17:30:30 +0200
committerChristian Grothoff <christian@grothoff.org>2017-03-27 17:30:30 +0200
commit802f89d2979d3a92228543d42cee6bb8e3e786d1 (patch)
treef5a834b15a072dfb7d3500459f83fae0cfa17846 /src/conversation/gnunet-helper-audio-record-gst.c
parent7978b76868ba81efaa4b65b47a54ee55cd092382 (diff)
downloadgnunet-802f89d2979d3a92228543d42cee6bb8e3e786d1.tar.gz
gnunet-802f89d2979d3a92228543d42cee6bb8e3e786d1.zip
fix #4974: migrate conversation GST helpers to new MST API
Diffstat (limited to 'src/conversation/gnunet-helper-audio-record-gst.c')
-rw-r--r--src/conversation/gnunet-helper-audio-record-gst.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/conversation/gnunet-helper-audio-record-gst.c b/src/conversation/gnunet-helper-audio-record-gst.c
index 7f1f3368b..b9aed4ea7 100644
--- a/src/conversation/gnunet-helper-audio-record-gst.c
+++ b/src/conversation/gnunet-helper-audio-record-gst.c
@@ -352,9 +352,12 @@ main (int argc, char **argv)
352 { 352 {
353 if (-1 == ret) 353 if (-1 == ret)
354 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 354 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
355 "Failed to write %u bytes at offset %u (total %u) in phase %d: %s\n", 355 "Failed to write %u bytes at offset %u (total %u) in phase %d: %s\n",
356 (unsigned int) to_send - offset, (unsigned int) offset, 356 (unsigned int) (to_send - offset),
357 (unsigned int) (to_send + offset), phase, strerror (errno)); 357 (unsigned int) offset,
358 (unsigned int) (to_send + offset),
359 phase,
360 strerror (errno));
358 abort_send = 1; 361 abort_send = 1;
359 break; 362 break;
360 } 363 }