Skip to content

Commit 2c308e2

Browse files
authoredNov 26, 2018
support local process malloc (#189)
Ready for JuliaLang/julia#29969
1 parent 2af42bb commit 2c308e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/memalloc.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function find_malloc_files(dirs)
3939
file = joinpath(dir, file)
4040
if isdir(file)
4141
append!(files, find_malloc_files(file))
42-
elseif endswith(file, "jl.mem")
42+
elseif endswith(file, ".mem")
4343
push!(files, file)
4444
end
4545
end

0 commit comments

Comments
 (0)
Please sign in to comment.