issue in fix.cpp?

I was working on adding respa support to fix_flow_gauss.cpp, and I think I came across a bug in fix.cpp. I think line 142 should read
int lvl = force->inumeric(FLERR,arg[iarg+1]);
instead of
int lvl = force->inumeric(FLERR,arg[1]);

that is, it should be arg[iarg+1] instead of arg[1].

-Steven

I was working on adding respa support to fix_flow_gauss.cpp, and I think I
came across a bug in fix.cpp. I think line 142 should read
int lvl = force->inumeric(FLERR,arg[iarg+1]);
instead of
int lvl = force->inumeric(FLERR,arg[1]);
that is, it should be arg[iarg+1] instead of arg[1].

you are correct, this is a bug and needs to be corrected as you suggest.

axel.