Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
ygrek committed Aug 21, 2024
1 parent 98767a1 commit b6faf0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
# https://github.com/ocaml/setup-ocaml/issues/815#issuecomment-2204838759
# SHELLOPTS workaround for windows
# setting SHELLOPTS via GITHUB_ENV didn't work for some reason
- run: opam exec -- env SHELLOPTS=igncr sh ./configure --enable-debug
- run: opam exec -- env SHELLOPTS=igncr sh ./configure --enable-debug --disable-pthread

- run: opam exec -- make

Expand Down
2 changes: 1 addition & 1 deletion src/utils/lib/stubs_c.c
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,7 @@ value ml_ip_job_start(value job_v)

char *hostname = String_val(Field(job_v,0));
if(ml_gethostbyname(hostname)){
Store_field(job_v, 1, addr_list_of_job())
Store_field(job_v, 1, addr_list_of_job());
Store_field(job_v, 2, Val_false);
} else {
Store_field(job_v, 2, Val_true);
Expand Down

0 comments on commit b6faf0a

Please sign in to comment.