gst/dccp/gstdccp.c: size_t's size varies by platform/architecture. Use glib convenien...
authorEdward Hervey <bilboed@bilboed.com>
Tue, 26 Aug 2008 11:08:34 +0000 (11:08 +0000)
committerEdward Hervey <bilboed@bilboed.com>
Tue, 26 Aug 2008 11:08:34 +0000 (11:08 +0000)
Original commit message from CVS:
* gst/dccp/gstdccp.c: (gst_dccp_read_buffer),
(gst_dccp_send_buffer), (gst_dccp_set_sock_windowsize):
size_t's size varies by platform/architecture. Use glib convenience
macro instead. Fixes build on macosx.
Remove ending '\n' in debug statements.

ChangeLog
gst/dccp/gstdccp.c

index 3cad4548075a5597ee23324f06c84a5a6e05129c..f3a1d277b5fbca5dbce75e95496e69174b8e78ab 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-08-26  Edward Hervey  <edward.hervey@collabora.co.uk>
+
+       * gst/dccp/gstdccp.c: (gst_dccp_read_buffer),
+       (gst_dccp_send_buffer), (gst_dccp_set_sock_windowsize):
+       size_t's size varies by platform/architecture. Use glib convenience
+       macro instead. Fixes build on macosx.
+       Remove ending '\n' in debug statements.
+
 2008-08-26  Edward Hervey  <edward.hervey@collabora.co.uk>
 
        * gst/pcapparse/gstpcapparse.c: (gst_pcap_parse_class_init):
index a53af7dc8d6de7c77725dc5127b861df7e69f229..c29d5f42fd66241ab25c2a28d303f40feb033be2 100644 (file)
@@ -118,7 +118,7 @@ gst_dccp_read_buffer (GstElement * this, int socket, GstBuffer ** buf)
   *buf = gst_buffer_new_and_alloc (readsize);
   bytes_read = read (socket, GST_BUFFER_DATA (*buf), readsize);
 
-  GST_LOG_OBJECT (this, "bytes read %d\n", bytes_read);
+  GST_LOG_OBJECT (this, "bytes read %" G_GSIZE_FORMAT, bytes_read);
   GST_LOG_OBJECT (this, "returning buffer of size %d", GST_BUFFER_SIZE (*buf));
 
   return GST_FLOW_OK;
@@ -285,10 +285,10 @@ gst_dccp_send_buffer (GstElement * this, GstBuffer * buffer, int client_sock_fd,
   size = GST_BUFFER_SIZE (buffer);
   data = GST_BUFFER_DATA (buffer);
 
-  GST_LOG_OBJECT (this, "writing %d bytes\n", size);
+  GST_LOG_OBJECT (this, "writing %" G_GSIZE_FORMAT " bytes", size);
 
   if (packet_size < 0) {
-    GST_LOG_OBJECT (this, "error getting MTU\n");
+    GST_LOG_OBJECT (this, "error getting MTU");
     return GST_FLOW_ERROR;
   }
 
@@ -429,14 +429,14 @@ gst_dccp_set_sock_windowsize (GstElement * element, int sock, int winSize,
      * since some OS's don't show the corrected value until then. */
     rc = setsockopt (sock, SOL_DCCP, SO_RCVBUF,
         (char *) &winSize, sizeof (winSize));
-    GST_DEBUG_OBJECT (element, "set rcv sockbuf: %d\n", winSize);
+    GST_DEBUG_OBJECT (element, "set rcv sockbuf: %d", winSize);
   } else {
     /* send buffer -- set
      * note: results are verified after connect() or listen(),
      * since some OS's don't show the corrected value until then. */
     rc = setsockopt (sock, SOL_DCCP, SO_SNDBUF,
         (char *) &winSize, sizeof (winSize));
-    GST_DEBUG_OBJECT (element, "set snd sockbuf: %d\n", winSize);
+    GST_DEBUG_OBJECT (element, "set snd sockbuf: %d", winSize);
   }
 
   if (rc < 0) {