Commit 11ff575f authored by Olivier Crête's avatar Olivier Crête

agent: Fix compiler warnings

parent 9adeb101
...@@ -2758,11 +2758,11 @@ static void ...@@ -2758,11 +2758,11 @@ static void
nice_debug_input_message_composition (const NiceInputMessage *messages, nice_debug_input_message_composition (const NiceInputMessage *messages,
guint n_messages) guint n_messages)
{ {
guint i;
if (!nice_debug_is_enabled ()) if (!nice_debug_is_enabled ())
return; return;
guint i;
for (i = 0; i < n_messages; i++) { for (i = 0; i < n_messages; i++) {
const NiceInputMessage *message = &messages[i]; const NiceInputMessage *message = &messages[i];
guint j; guint j;
......
...@@ -347,7 +347,8 @@ nice_output_stream_write (GOutputStream *stream, const void *buffer, gsize count ...@@ -347,7 +347,8 @@ nice_output_stream_write (GOutputStream *stream, const void *buffer, gsize count
GCancellable *cancellable, GError **error) GCancellable *cancellable, GError **error)
{ {
NiceOutputStream *self = NICE_OUTPUT_STREAM (stream); NiceOutputStream *self = NICE_OUTPUT_STREAM (stream);
gssize len = -1; const gchar* buf = buffer;
gssize len = 0;
gint n_sent; gint n_sent;
NiceAgent *agent = NULL; /* owned */ NiceAgent *agent = NULL; /* owned */
gulong cancel_id = 0, writeable_id; gulong cancel_id = 0, writeable_id;
...@@ -377,7 +378,6 @@ nice_output_stream_write (GOutputStream *stream, const void *buffer, gsize count ...@@ -377,7 +378,6 @@ nice_output_stream_write (GOutputStream *stream, const void *buffer, gsize count
* since nice_agent_recv() is blocking. Currently this uses a fairly dodgy * since nice_agent_recv() is blocking. Currently this uses a fairly dodgy
* GCond solution; would be much better for nice_agent_send() to block * GCond solution; would be much better for nice_agent_send() to block
* properly in the main loop. */ * properly in the main loop. */
len = 0;
write_data = g_slice_new0 (WriteData); write_data = g_slice_new0 (WriteData);
g_atomic_int_set (&write_data->ref_count, 3); g_atomic_int_set (&write_data->ref_count, 3);
...@@ -410,7 +410,7 @@ nice_output_stream_write (GOutputStream *stream, const void *buffer, gsize count ...@@ -410,7 +410,7 @@ nice_output_stream_write (GOutputStream *stream, const void *buffer, gsize count
g_mutex_unlock (&write_data->mutex); g_mutex_unlock (&write_data->mutex);
n_sent = nice_agent_send (agent, self->priv->stream_id, n_sent = nice_agent_send (agent, self->priv->stream_id,
self->priv->component_id, count - len, buffer + len); self->priv->component_id, count - len, buf + len);
g_mutex_lock (&write_data->mutex); g_mutex_lock (&write_data->mutex);
......
...@@ -124,7 +124,6 @@ AS_IF([test "x$enable_compile_warnings" != "xno" -a \ ...@@ -124,7 +124,6 @@ AS_IF([test "x$enable_compile_warnings" != "xno" -a \
NICE_ADD_FLAG([-Wnested-externs]) NICE_ADD_FLAG([-Wnested-externs])
NICE_ADD_FLAG([-Wwrite-strings]) NICE_ADD_FLAG([-Wwrite-strings])
NICE_ADD_FLAG([-Wpointer-arith]) NICE_ADD_FLAG([-Wpointer-arith])
NICE_ADD_FLAG([-Wbad-function-cast])
NICE_ADD_FLAG([-Wmissing-declarations]) NICE_ADD_FLAG([-Wmissing-declarations])
NICE_ADD_FLAG([-Wmissing-prototypes]) NICE_ADD_FLAG([-Wmissing-prototypes])
NICE_ADD_FLAG([-Wstrict-prototypes]) NICE_ADD_FLAG([-Wstrict-prototypes])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment