Skip to content

Commit

Permalink
Merged revision(s) 20370 from branches/OpenMPT-1.29:
Browse files Browse the repository at this point in the history
[Ref] Small cleanup.
........


git-svn-id: https://source.openmpt.org/svn/openmpt/branches/OpenMPT-1.28@20371 56274372-70c3-4bfc-bfc3-4c3a0b034d27
  • Loading branch information
manxorist committed Mar 16, 2024
1 parent 8e855ee commit 72e8440
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions common/mptBaseUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -709,8 +709,7 @@ namespace Util {
{
return std::numeric_limits<T>::max();
}
T result = ((x + (target - 1)) / target) * target;
return result;
return ((x + (target - 1)) / target) * target;
}

} // namespace Util
Expand Down

0 comments on commit 72e8440

Please sign in to comment.