mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 17:20:36 +00:00
info: explicitly cast to the enum type
Fixes warning #188: enumerated type mixed with another type reported by ICC.
This commit is contained in:
parent
e5d00246cf
commit
2a6ba0b29d
1 changed files with 1 additions and 1 deletions
|
@ -1480,7 +1480,7 @@ gst_debug_category_reset_threshold (GstDebugCategory * category)
|
|||
GstDebugLevel
|
||||
gst_debug_category_get_threshold (GstDebugCategory * category)
|
||||
{
|
||||
return g_atomic_int_get (&category->threshold);
|
||||
return (GstDebugLevel) g_atomic_int_get (&category->threshold);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue