summaryrefslogtreecommitdiffstats
path: root/src/osf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/osf.c')
-rw-r--r--src/osf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/osf.c b/src/osf.c
index b8457cc4..fc09e157 100644
--- a/src/osf.c
+++ b/src/osf.c
@@ -3,6 +3,7 @@
#include <utils.h>
#include <string.h>
#include <osf.h>
+#include <json.h>
static void osf_expr_print(const struct expr *expr, struct output_ctx *octx)
{
@@ -18,6 +19,7 @@ static const struct expr_ops osf_expr_ops = {
.name = "osf",
.print = osf_expr_print,
.clone = osf_expr_clone,
+ .json = osf_expr_json,
};
struct expr *osf_expr_alloc(const struct location *loc)