Fix FTBFS with gcc 14

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/45/head
Michele Calgaro 2 months ago
parent 758ae2a6dc
commit 447ba91ce6
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -21,8 +21,9 @@
#include <stdio.h>
#include <string.h>
#include <caml/mlvalues.h>
#include <caml/alloc.h>
#include <caml/callback.h>
#include <caml/mlvalues.h>
char* solve_equation(const char * eq)
{
@ -32,6 +33,6 @@ char* solve_equation(const char * eq)
solve_equation_closure = caml_named_value("solve_equation");
}
return strdup(String_val(callback(*solve_equation_closure, copy_string(eq)) ));
return strdup(String_val(caml_callback(*solve_equation_closure, caml_copy_string(eq)) ));
}

Loading…
Cancel
Save