diff options
author | Jan David Mol <j.j.d.mol@tudelft.nl> | 2006-11-14 11:54:14 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2006-11-14 11:54:14 +0000 |
commit | d24ad6ac0ac348355b8b6ba69fafe62c1c28b09e (patch) | |
tree | c9f888230fc0fcfbcd633f348475d2c0cccde45c /gst/tcp/gsttcpclientsink.c | |
parent | cadc881165acee92dd8bcb67cb6ae444ea66c7ec (diff) |
Various gsize and gssize printf fixes. Fixes #372507.
Original commit message from CVS:
Patch by: Jan David Mol <j dot j dot d dot mol at tudelft dot nl>
* gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds),
(gst_riff_parse_strf_iavs):
* gst/subparse/gstsubparse.c: (convert_encoding):
* gst/tcp/gstmultifdsink.c:
(gst_multi_fd_sink_handle_client_write):
* gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
(gst_tcp_read_buffer), (gst_tcp_gdp_read_caps),
(gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
* gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_render):
* sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
(gst_ximagesink_ximage_new):
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
Various gsize and gssize printf fixes. Fixes #372507.
Diffstat (limited to 'gst/tcp/gsttcpclientsink.c')
-rw-r--r-- | gst/tcp/gsttcpclientsink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/tcp/gsttcpclientsink.c b/gst/tcp/gsttcpclientsink.c index 9da1454c..d863e840 100644 --- a/gst/tcp/gsttcpclientsink.c +++ b/gst/tcp/gsttcpclientsink.c @@ -266,7 +266,7 @@ write_error: { GST_ELEMENT_ERROR (sink, RESOURCE, WRITE, (_("Error while sending data to \"%s:%d\"."), sink->host, sink->port), - ("Only %d of %d bytes written: %s", + ("Only %" G_GSIZE_FORMAT " of %u bytes written: %s", wrote, GST_BUFFER_SIZE (buf), g_strerror (errno))); return GST_FLOW_ERROR; } |