souputils: Fix compiler warning

gstsouputils.c:35:25: error: comparison of constant 9 with expression of type
      'SoupLoggerLogLevel' is always false
      [-Werror,-Wtautological-constant-out-of-range-compare]
This commit is contained in:
Sebastian Dröge 2014-02-12 10:08:50 +01:00
parent 4f42fff349
commit 436d41fa8e

View file

@ -32,7 +32,7 @@ gst_soup_util_log_make_level_tag (SoupLoggerLogLevel level)
{
gchar c;
if (G_UNLIKELY (level > 9))
if (G_UNLIKELY ((gint) level > 9))
return '?';
switch (level) {