Skip to content

Commit

Permalink
Replace = with in
Browse files Browse the repository at this point in the history
  • Loading branch information
henry2004y committed Jul 17, 2023
1 parent d4a2649 commit fe13b9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vlsv/vlsvreader.jl
Original file line number Diff line number Diff line change
Expand Up @@ -916,7 +916,7 @@ function readvcells(meta::MetaVLSV, cid::Int; species::String="proton")
end

@inline function _fillvcell!(vcellids, vcellf, vcellid_local, data, blockIDs, bsize)
@inbounds for i in eachindex(blockIDs), j = 1:bsize
@inbounds for i in eachindex(blockIDs), j in 1:bsize
index_ = (i-1)*bsize+j
vcellids[index_] = vcellid_local[j] + bsize*blockIDs[i]
vcellf[index_] = data[j,i]
Expand Down

0 comments on commit fe13b9f

Please sign in to comment.