navigation: Fix compiler warning with MSVC

Fixes bug #594275.
This commit is contained in:
Havard Graff 2009-08-31 20:24:22 +02:00 committed by Sebastian Dröge
parent f710bec408
commit a14e730aad

View file

@ -821,7 +821,7 @@ gst_navigation_event_parse_command (GstEvent * event,
if (command) {
s = gst_event_get_structure (event);
g_return_val_if_fail (gst_structure_get_uint (s, "command-code", command),
g_return_val_if_fail (gst_structure_get_uint (s, "command-code", (guint*)command),
FALSE);
}