gst/tcp/: Signedness fixes.

Original commit message from CVS:
2005-07-05  Andy Wingo  <wingo@pobox.com>

* gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read):
* gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
Signedness fixes.
This commit is contained in:
Andy Wingo 2005-07-05 11:07:20 +00:00
parent 68eeef9614
commit 8c6f8b846f
3 changed files with 13 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2005-07-05 Andy Wingo <wingo@pobox.com>
* gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read):
* gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
Signedness fixes.
2005-07-05 Wim Taymans <wim@fluendo.com>
* configure.ac:
@ -41,6 +47,11 @@
Ported tcp plugins to 0.9.
2005-07-05 Andy Wingo <wingo@pobox.com>
* Way, way, way too many files:
Remove crack comment from the 2000 era.
2005-07-05 Andy Wingo <wingo@pobox.com>
* gst/playback/gstplaybasebin.c (fill_buffer):

View file

@ -740,7 +740,7 @@ gst_multifdsink_handle_client_read (GstMultiFdSink * sink,
static gboolean
gst_multifdsink_client_queue_data (GstMultiFdSink * sink, GstTCPClient * client,
gchar * data, gint len)
guint8 * data, gint len)
{
GstBuffer *buf;

View file

@ -165,7 +165,7 @@ gst_tcpserversink_handle_server_read (GstTCPServerSink * sink)
/* new client */
int client_sock_fd;
struct sockaddr_in client_address;
int client_address_len;
unsigned int client_address_len;
/* For some stupid reason, client_address and client_address_len has to be
* zeroed */