mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +00:00
gstinfo: Minor modification to avoid gst-indent pain
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3483>
This commit is contained in:
parent
f84fe4710a
commit
df311a65da
1 changed files with 2 additions and 2 deletions
|
@ -3318,7 +3318,7 @@ dbghelp_load_symbol (const gchar * symbol_name, gpointer * symbol)
|
||||||
dbg_help_module = NULL;
|
dbg_help_module = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ! !dbg_help_module;
|
return dbg_help_module != NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
|
@ -3356,7 +3356,7 @@ dbghelp_initialize_symbols (HANDLE process)
|
||||||
g_once_init_leave (&initialization_value, 1);
|
g_once_init_leave (&initialization_value, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ! !dbg_help_module;
|
return dbg_help_module != NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gchar *
|
static gchar *
|
||||||
|
|
Loading…
Reference in a new issue