From fe13b9f095f443f28859540682888941d32d0512 Mon Sep 17 00:00:00 2001 From: Hongyang Zhou Date: Mon, 17 Jul 2023 10:16:33 +0800 Subject: [PATCH] Replace = with in --- src/vlsv/vlsvreader.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vlsv/vlsvreader.jl b/src/vlsv/vlsvreader.jl index 57df7d53..acb78dad 100644 --- a/src/vlsv/vlsvreader.jl +++ b/src/vlsv/vlsvreader.jl @@ -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]