From ab04416bfd3c371603526c257100004e4793f704 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Mon, 29 Jun 2020 00:10:34 -0400 Subject: [PATCH] fix typo --- src/CORESHELL/compute_temp_cs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CORESHELL/compute_temp_cs.cpp b/src/CORESHELL/compute_temp_cs.cpp index 84b6a0ceda..d8f952551d 100644 --- a/src/CORESHELL/compute_temp_cs.cpp +++ b/src/CORESHELL/compute_temp_cs.cpp @@ -70,7 +70,7 @@ ComputeTempCS::ComputeTempCS(LAMMPS *lmp, int narg, char **arg) : std::string fixcmd = id + std::string("_COMPUTE_STORE"); id_fix = new char[fixcmd.size()+1]; - strcpy(id_fix,fix_cmd.c_str()); + strcpy(id_fix,fixcmd.c_str()); fixcmd += fmt::format(" {} STORE peratom 0 1", group->names[igroup]); modify->add_fix(fixcmd);