Commit 62a7cd06 authored by Jacob Gissinger's avatar Jacob Gissinger
Browse files

more accurate dummy variable name

parent e7f147a2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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<std::string> args = utils::split_words(fixcmd);
  std::vector<std::string> args = utils::split_words(groupcmd);
  char **newarg = new char*[args.size()];
  int i=0;
  for (const auto &arg : args) {