From 62a7cd069336c75fa6afcc8304707ef583181d7b Mon Sep 17 00:00:00 2001 From: Jacob Gissinger Date: Fri, 26 Jun 2020 22:15:31 -0600 Subject: [PATCH] more accurate dummy variable name --- src/group.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/group.cpp b/src/group.cpp index 9d070e319c..967432b2bf 100644 --- a/src/group.cpp +++ b/src/group.cpp @@ -551,9 +551,9 @@ void Group::assign(int narg, char **arg) convenience function to allow assigning to groups from a single string ------------------------------------------------------------------------- */ -void Group::assign(const std::string &fixcmd) +void Group::assign(const std::string &groupcmd) { - std::vector args = utils::split_words(fixcmd); + std::vector args = utils::split_words(groupcmd); char **newarg = new char*[args.size()]; int i=0; for (const auto &arg : args) {