silence compiler warning

This commit is contained in:
Axel Kohlmeyer 2021-03-22 21:36:33 -04:00
parent ca1496e028
commit 4b076e01be
No known key found for this signature in database
GPG Key ID: D9B44E93BF0C375A
1 changed files with 1 additions and 1 deletions

View File

@ -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));