Skip to content

Commit

Permalink
support local process malloc
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbyrne authored Nov 19, 2018
1 parent 2af42bb commit 769561f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/memalloc.jl
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function find_malloc_files(dirs)
file = joinpath(dir, file)
if isdir(file)
append!(files, find_malloc_files(file))
elseif endswith(file, "jl.mem")
elseif endswith(file, ".mem")
push!(files, file)
end
end
Expand Down

0 comments on commit 769561f

Please sign in to comment.