transform/scale: Fix g_variant_new() argument.

This commit is contained in:
Uwe Hermann 2015-10-24 21:36:20 +02:00
parent 938bdc25b7
commit a73665a3fa
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ static const struct sr_option *get_options(void)
/* Default to a scaling factor of 1.0. */
if (!options[0].def)
options[0].def = g_variant_ref_sink(g_variant_new(("(xt"), &p, &q));
options[0].def = g_variant_ref_sink(g_variant_new("(xt)", &p, &q));
return options;
}