summaryrefslogtreecommitdiff
path: root/gsk/gsktransform.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2021-10-28 03:13:28 +0200
committerBenjamin Otte <otte@redhat.com>2021-10-28 03:19:08 +0200
commitc97a758aa772fc6411a7fa88fdcda49dcdba132e (patch)
tree9352fb378945da959ab120c36eec42554546102f /gsk/gsktransform.c
parent68eb60119435ce9121aa76d8d10b8699a1bad961 (diff)
downloadgtk+-c97a758aa772fc6411a7fa88fdcda49dcdba132e.tar.gz
cssparser: Remove unused argument
The base_directory argument is never used. So don't have it.
Diffstat (limited to 'gsk/gsktransform.c')
-rw-r--r--gsk/gsktransform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gsk/gsktransform.c b/gsk/gsktransform.c
index 9eeab2d66a..b690cec714 100644
--- a/gsk/gsktransform.c
+++ b/gsk/gsktransform.c
@@ -2391,7 +2391,7 @@ gsk_transform_parse (const char *string,
g_return_val_if_fail (out_transform != NULL, FALSE);
bytes = g_bytes_new_static (string, strlen (string));
- parser = gtk_css_parser_new_for_bytes (bytes, NULL, NULL, NULL, NULL, NULL);
+ parser = gtk_css_parser_new_for_bytes (bytes, NULL, NULL, NULL, NULL);
result = gsk_transform_parser_parse (parser, out_transform);