remove trailing whitespace

This commit is contained in:
Axel Kohlmeyer
2020-01-21 15:46:28 -05:00
parent d83cf8e4b0
commit 646dc83394
7 changed files with 28 additions and 28 deletions

View File

@ -118,7 +118,7 @@ int AtomVec::grow_nmax_bonus(int nmax_bonus)
bigint AtomVec::roundup(bigint n)
{
if (n % DELTA) n = n/DELTA * DELTA + DELTA;
if (n > MAXSMALLINT)
if (n > MAXSMALLINT)
error->one(FLERR,"Too many atoms created on one or more procs");
return n;
}