summaryrefslogtreecommitdiff
path: root/tests/control-flow
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2021-11-27 19:26:35 +0100
committerRico Tzschichholz <ricotz@ubuntu.com>2021-11-27 19:26:35 +0100
commit05d804ba387d8231552615fcbb69f3ce457d3ef6 (patch)
tree30054be745e1a23f53288a01bae21e2dd131d77a /tests/control-flow
parenta44117b51b394f7720823a2b920cf301ef39e7a4 (diff)
downloadvala-05d804ba387d8231552615fcbb69f3ce457d3ef6.tar.gz
codegen: Drop inconsistent space for ObjectType parameters
Diffstat (limited to 'tests/control-flow')
-rw-r--r--tests/control-flow/assigned-local-variable.c-expected4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/control-flow/assigned-local-variable.c-expected b/tests/control-flow/assigned-local-variable.c-expected
index 62abc8597..8920f8df8 100644
--- a/tests/control-flow/assigned-local-variable.c-expected
+++ b/tests/control-flow/assigned-local-variable.c-expected
@@ -21,12 +21,12 @@
#define _vala_return_val_if_fail(expr, msg, val) if G_LIKELY (expr) ; else { g_return_if_fail_warning (G_LOG_DOMAIN, G_STRFUNC, msg); return val; }
#define _vala_warn_if_fail(expr, msg) if G_LIKELY (expr) ; else g_warn_message (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, msg);
-VALA_EXTERN gboolean foo (gchar* * s);
+VALA_EXTERN gboolean foo (gchar** s);
VALA_EXTERN gint bar (void);
static void _vala_main (void);
gboolean
-foo (gchar* * s)
+foo (gchar** s)
{
gchar* _vala_s = NULL;
gchar* _tmp0_;