Skip to content

Commit

Permalink
fix stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Aug 26, 2024
1 parent 1f58940 commit b461e71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bindings/tracy_stubs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ CAMLprim value ml_tracy_enter(value file, value fun, value line, value name,
size_t c_name_len = caml_string_length(name);

uint64_t srcloc = ___tracy_alloc_srcloc_name(
c_line, c_file, c_file_len, c_fun, c_fun_len, c_name, c_name_len);
c_line, c_file, c_file_len, c_fun, c_fun_len, c_name, c_name_len, 0);

const uint32_t max_stack_depth = 62;
uint32_t c_depth = (uint32_t)Int_val(depth);
Expand Down

0 comments on commit b461e71

Please sign in to comment.