From 3559c25bd9d91167e4dcec040dcda6348cdc349c Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Tue, 30 Jul 2019 06:35:35 -0400 Subject: [PATCH] add missing parenthesis --- src/compute_chunk_spread_atom.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compute_chunk_spread_atom.cpp b/src/compute_chunk_spread_atom.cpp index 4beeb2b010..a58c52d8e8 100644 --- a/src/compute_chunk_spread_atom.cpp +++ b/src/compute_chunk_spread_atom.cpp @@ -117,7 +117,7 @@ ComputeChunkSpreadAtom(LAMMPS *lmp, int narg, char **arg) : error->all(FLERR,"Compute ID for compute chunk/spread/atom " "does not exist"); - if (!utils::strmatch(modify->compute[icompute]->style,"/chunk$") + if (!utils::strmatch(modify->compute[icompute]->style,"/chunk$")) error->all(FLERR,"Compute for compute chunk/spread/atom " "does not calculate per-chunk values");