forked from lijiext/lammps
silence compiler warning
This commit is contained in:
parent
ca1496e028
commit
4b076e01be
|
@ -227,7 +227,7 @@ void FixPropertyAtom::read_data_section(char *keyword, int n, char *buf,
|
|||
|
||||
try {
|
||||
ValueTokenizer values(buf);
|
||||
if (values.count() != nvalue+1)
|
||||
if ((int)values.count() != nvalue+1)
|
||||
error->all(FLERR,fmt::format("Incorrect format in {} section "
|
||||
"of data file: {}",keyword,buf));
|
||||
|
||||
|
|
Loading…
Reference in New Issue