From 410f71ccddbd4d6133ae9f3e3fcf3ea65327337d Mon Sep 17 00:00:00 2001 From: Robert Konrad Date: Mon, 4 Nov 2024 20:55:48 +0100 Subject: [PATCH] Add a missing NULL --- Sources/integrations/kope.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/integrations/kope.c b/Sources/integrations/kope.c index b96b609..44ce6a4 100644 --- a/Sources/integrations/kope.c +++ b/Sources/integrations/kope.c @@ -1317,7 +1317,7 @@ void kope_export(char *directory, api_kind api) { fprintf(output, ", dynamic_buffers, dynamic_offsets, dynamic_sizes"); } else { - fprintf(output, ", NULL, NULL"); + fprintf(output, ", NULL, NULL, NULL"); } fprintf(output, ");\n"); fprintf(output, "}\n\n");