Skip to content

Commit 5a6362e

Browse files
committed
Fix LibraryDslTest compilation
1 parent 8a95c8a commit 5a6362e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unittest/analyses/libraryDslTest.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ let pthread_mutex_lock_desc: LibraryDesc.t = LibraryDsl.(
1111
)
1212

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

1717
let realloc_desc: LibraryDesc.t = LibraryDsl.(

0 commit comments

Comments
 (0)