From 29651c4bb17f70c1e74d296d469055fa14504010 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Tue, 24 Jun 2025 23:29:19 -0400 Subject: [PATCH] we're parsing an integer here --- src/BPM/atom_vec_bpm_sphere.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BPM/atom_vec_bpm_sphere.cpp b/src/BPM/atom_vec_bpm_sphere.cpp index 5a79bb5b00..8e1b0d1aa2 100644 --- a/src/BPM/atom_vec_bpm_sphere.cpp +++ b/src/BPM/atom_vec_bpm_sphere.cpp @@ -74,7 +74,7 @@ void AtomVecBPMSphere::process_args(int narg, char **arg) radvary = 0; if (narg == 1) { - radvary = utils::numeric(FLERR, arg[0], true, lmp); + radvary = utils::inumeric(FLERR, arg[0], true, lmp); if (radvary < 0 || radvary > 1) error->all(FLERR, "Illegal atom_style bpm/sphere command"); }