mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
silence forte warnings
Original commit message from CVS: silence forte warnings
This commit is contained in:
parent
0d51c139ca
commit
fe9a0a6d05
1 changed files with 6 additions and 7 deletions
13
gst/gst.c
13
gst/gst.c
|
@ -318,7 +318,7 @@ load_plugin_func (gpointer data, gpointer user_data)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
parse_number (const gchar *number, guint32 *val)
|
parse_number (const gchar *number, gint32 *val)
|
||||||
{
|
{
|
||||||
/* handle either 0xHEX or dec */
|
/* handle either 0xHEX or dec */
|
||||||
if (*(number+1) == 'x') {
|
if (*(number+1) == 'x') {
|
||||||
|
@ -574,7 +574,7 @@ static void
|
||||||
init_popt_callback (poptContext context, enum poptCallbackReason reason,
|
init_popt_callback (poptContext context, enum poptCallbackReason reason,
|
||||||
const struct poptOption *option, const char *arg, void *data)
|
const struct poptOption *option, const char *arg, void *data)
|
||||||
{
|
{
|
||||||
gint val = 0;
|
gint32 val = 0;
|
||||||
GLogLevelFlags fatal_mask;
|
GLogLevelFlags fatal_mask;
|
||||||
|
|
||||||
if (gst_initialized)
|
if (gst_initialized)
|
||||||
|
@ -595,16 +595,16 @@ init_popt_callback (poptContext context, enum poptCallbackReason reason,
|
||||||
break;
|
break;
|
||||||
case ARG_INFO_MASK:
|
case ARG_INFO_MASK:
|
||||||
parse_number (arg, &val);
|
parse_number (arg, &val);
|
||||||
gst_info_set_categories (val);
|
gst_info_set_categories ((guint32) val);
|
||||||
break;
|
break;
|
||||||
case ARG_DEBUG_MASK:
|
case ARG_DEBUG_MASK:
|
||||||
parse_number (arg, &val);
|
parse_number (arg, &val);
|
||||||
gst_debug_set_categories (val);
|
gst_debug_set_categories ((guint32) val);
|
||||||
break;
|
break;
|
||||||
case ARG_MASK:
|
case ARG_MASK:
|
||||||
parse_number (arg, &val);
|
parse_number (arg, &val);
|
||||||
gst_debug_set_categories (val);
|
gst_debug_set_categories ((guint32) val);
|
||||||
gst_info_set_categories (val);
|
gst_info_set_categories ((guint32) val);
|
||||||
break;
|
break;
|
||||||
case ARG_MASK_HELP:
|
case ARG_MASK_HELP:
|
||||||
gst_mask_help ();
|
gst_mask_help ();
|
||||||
|
@ -727,4 +727,3 @@ gst_version (guint *major, guint *minor, guint *micro)
|
||||||
*minor = GST_VERSION_MINOR;
|
*minor = GST_VERSION_MINOR;
|
||||||
*micro = GST_VERSION_MICRO;
|
*micro = GST_VERSION_MICRO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue