From: Wim Taymans Date: Fri, 14 Feb 2014 14:53:55 +0000 (+0100) Subject: tests: fix typecast to fix compilation X-Git-Tag: 1.19.3~509^2~4829 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6af234e29e9f64ce55901965c741ee71cffeaf50;p=platform%2Fupstream%2Fgstreamer.git tests: fix typecast to fix compilation --- diff --git a/tests/check/elements/souphttpsrc.c b/tests/check/elements/souphttpsrc.c index 360817f..6994fac 100644 --- a/tests/check/elements/souphttpsrc.c +++ b/tests/check/elements/souphttpsrc.c @@ -530,7 +530,7 @@ do_get (SoupMessage * msg, const char *path) soup_message_headers_append (msg->response_headers, "Location", redir_uri); g_free (redir_uri); } - if (status != (SoupKnownStatusCode) SOUP_STATUS_OK && !send_error_doc) + if (status != (SoupStatus) SOUP_STATUS_OK && !send_error_doc) goto leave; if (msg->method == SOUP_METHOD_GET) {