summaryrefslogtreecommitdiffstats
path: root/src/rt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rt.c')
-rw-r--r--src/rt.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/rt.c b/src/rt.c
index 3ad77bcd..cdd5e9d8 100644
--- a/src/rt.c
+++ b/src/rt.c
@@ -40,10 +40,11 @@ static void realm_type_print(const struct expr *expr, struct output_ctx *octx)
return symbolic_constant_print(realm_tbl, expr, true, octx);
}
-static struct error_record *realm_type_parse(const struct expr *sym,
+static struct error_record *realm_type_parse(struct parse_ctx *ctx,
+ const struct expr *sym,
struct expr **res)
{
- return symbolic_constant_parse(sym, realm_tbl, res);
+ return symbolic_constant_parse(ctx, sym, realm_tbl, res);
}
const struct datatype realm_type = {