diff options
author | 2019-04-16 16:50:16 -0700 | |
---|---|---|
committer | 2019-04-16 16:50:16 -0700 | |
commit | 046be9226fa55982cfceb74f49d94d7dd979c5aa (patch) | |
tree | 9ac53229028282e76cdba1aa39ec75ba0c5ee787 /Source/Filter/BilinearFilter.cpp | |
parent | 1b22cb77a524c0cdb314e38ae2bef44e1276cdea (diff) | |
download | WarpX-046be9226fa55982cfceb74f49d94d7dd979c5aa.tar.gz WarpX-046be9226fa55982cfceb74f49d94d7dd979c5aa.tar.zst WarpX-046be9226fa55982cfceb74f49d94d7dd979c5aa.zip |
fix typo
Diffstat (limited to 'Source/Filter/BilinearFilter.cpp')
-rw-r--r-- | Source/Filter/BilinearFilter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Filter/BilinearFilter.cpp b/Source/Filter/BilinearFilter.cpp index 868d6d384..4017d3f73 100644 --- a/Source/Filter/BilinearFilter.cpp +++ b/Source/Filter/BilinearFilter.cpp @@ -88,7 +88,7 @@ BilinearFilter::ApplyStencil (MultiFab& dstmf, const MultiFab& srcmf, int scomp, // tmpfab has enough ghost cells for the stencil AsyncFab tmp_async_fab(tmpfab,gbx,ncomp); FArrayBox* tmpfab_ptr = tmp_async_fab.fabPtr(); - const FArrayBox* srcfab_ptr = dstmf.fabPtr(mfi); + const FArrayBox* srcfab_ptr = srcmf.fabPtr(mfi); // Copy values in srcfab into tmpfab const Box& ibx = gbx & srcfab.box(); AMREX_LAUNCH_HOST_DEVICE_LAMBDA(gbx, tgbx, |