mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
validate: remove const from outfolder
GOptionEntry's arg_data is of type gpointer which differs in constness from const gchar*, so remove constness from outfolder. This fixes a build issue with msvc. https://bugzilla.gnome.org/show_bug.cgi?id=782031
This commit is contained in:
parent
17f2220311
commit
e1bf823e0c
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ main (int argc, char **argv)
|
|||
GError *err = NULL;
|
||||
GstValidateRunner *runner = NULL;
|
||||
GOptionContext *ctx;
|
||||
const gchar *outfolder = NULL;
|
||||
gchar *outfolder = NULL;
|
||||
gfloat mssim = 0, lowest = 1, highest = -1;
|
||||
gdouble min_avg_similarity = 0.95, min_lowest_similarity = -1.0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue