rtpsbcpay: Fix compile error
authorArun Raghavan <arun@arunraghavan.net>
Mon, 14 Aug 2017 12:09:15 +0000 (17:39 +0530)
committerArun Raghavan <arun@arunraghavan.net>
Mon, 14 Aug 2017 12:09:15 +0000 (17:39 +0530)
gst/rtp/gstrtpsbcpay.c

index 8aa4ef8..1d2cbd4 100644 (file)
@@ -227,7 +227,7 @@ gst_rtp_sbc_pay_flush_buffers (GstRtpSBCPay * sbcpay)
     res = gst_rtp_base_payload_push (GST_RTP_BASE_PAYLOAD (sbcpay), outbuf);
 
     /* try to send another RTP buffer if available data exceeds MTU size */
-  } while (res == GST_FLOW_OK)
+  } while (res == GST_FLOW_OK);
 
   return res;
 }