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:
Scott D Phillips 2017-05-01 13:51:48 -07:00 committed by Reynaldo H. Verdejo Pinochet
parent 17f2220311
commit e1bf823e0c

View file

@ -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;