add missing return

This commit is contained in:
Axel Kohlmeyer
2021-03-30 13:34:31 -04:00
parent 4ee24b85b0
commit 8f5d11c0c5

View File

@ -47,6 +47,7 @@ void Deprecated::command(int narg, char **arg)
newcmd.append(arg[i]); newcmd.append(arg[i]);
} }
input->one(newcmd); input->one(newcmd);
return;
} }
error->all(FLERR,"This command is no longer available"); error->all(FLERR,"This command is no longer available");
} }