Remove useless instruction.

This commit is contained in:
Luiz Augusto von Dentz 2009-07-15 16:51:08 -03:00
parent 97046eaf3f
commit 5e8241cb3a

View File

@ -430,14 +430,11 @@ static gboolean gst_avdtp_sink_conf_recv_stream_fd(
static gboolean server_callback(GIOChannel *chan,
GIOCondition cond, gpointer data)
{
GstAvdtpSink *sink;
if (cond & G_IO_HUP || cond & G_IO_NVAL)
return FALSE;
else if (cond & G_IO_ERR) {
sink = GST_AVDTP_SINK(data);
GST_WARNING_OBJECT(sink, "Untreated callback G_IO_ERR");
}
else if (cond & G_IO_ERR)
GST_WARNING_OBJECT(GST_AVDTP_SINK(data),
"Untreated callback G_IO_ERR");
return TRUE;
}