Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GStreamer
gstreamer
Commits
c8cde669
Commit
c8cde669
authored
Mar 06, 2012
by
Sebastian Dröge
Browse files
gst: Fix 'comparison of unsigned enum expression >= 0 is always true' compiler warning
parent
495aca49
Changes
1
Hide whitespace changes
Inline
Side-by-side
gst/gst.c
View file @
c8cde669
...
...
@@ -913,7 +913,7 @@ parse_one_option (gint opt, const gchar * arg, GError ** err)
GstDebugLevel
tmp
=
GST_LEVEL_NONE
;
tmp
=
(
GstDebugLevel
)
strtol
(
arg
,
NULL
,
0
);
if
(
tmp
>=
0
&&
tmp
<
GST_LEVEL_COUNT
)
{
if
(
((
guint
)
tmp
)
<
GST_LEVEL_COUNT
)
{
gst_debug_set_default_threshold
(
tmp
);
}
break
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment