Skip to content

Commit

Permalink
Fix LibraryDslTest compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
sim642 committed Nov 27, 2023
1 parent 8a95c8a commit 5a6362e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unittest/analyses/libraryDslTest.ml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ let pthread_mutex_lock_desc: LibraryDesc.t = LibraryDsl.(
)

let pthread_create_desc: LibraryDesc.t = LibraryDsl.(
special [__ "thread" [w]; drop "attr" [r]; __ "start_routine" [r]; __ "arg" [r]] @@ fun thread start_routine arg -> ThreadCreate { thread; start_routine; arg }
special [__ "thread" [w]; drop "attr" [r]; __ "start_routine" [r]; __ "arg" [r]] @@ fun thread start_routine arg -> ThreadCreate { thread; start_routine; arg; multiple = false }
)

let realloc_desc: LibraryDesc.t = LibraryDsl.(
Expand Down

0 comments on commit 5a6362e

Please sign in to comment.