Skip to content

Commit 120ff86

Browse files
committed
Fix call to maxthreadid
1 parent e4bbf7c commit 120ff86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/generate_precompile.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
if Threads.maxthreadid() != 1
4-
@warn "Running this file with multiple Julia threads may lead to a build error" Base.maxthreadid()
4+
@warn "Running this file with multiple Julia threads may lead to a build error" Base.Threads.maxthreadid()
55
end
66

77
if Base.isempty(Base.ARGS) || Base.ARGS[1] !== "0"

0 commit comments

Comments
 (0)