From 08d81a5ac27c91cb8f401af4b26ec0bfc43f8327 Mon Sep 17 00:00:00 2001 From: jtclemm Date: Tue, 24 Jun 2025 12:08:54 -0600 Subject: [PATCH] Correcting simple variable type mistake --- src/RHEO/fix_rheo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RHEO/fix_rheo.cpp b/src/RHEO/fix_rheo.cpp index ffaedc2637..423847c715 100644 --- a/src/RHEO/fix_rheo.cpp +++ b/src/RHEO/fix_rheo.cpp @@ -398,7 +398,7 @@ void FixRHEO::initial_integrate(int /*vflag*/) // Shifting atoms if (shift_flag) { - double vshift = compute_vshift->vshift; + double **vshift = compute_vshift->vshift; for (i = 0; i < nlocal; i++) { if (status[i] & STATUS_NO_SHIFT) continue; if (status[i] & PHASECHECK) continue;