Some easy loss-of-precision fixes.

This commit is contained in:
nhkeni
2022-03-16 17:49:29 -04:00
parent 16ea5e7fa6
commit 81b014977d
6 changed files with 16 additions and 13 deletions

View File

@@ -3622,7 +3622,7 @@ stackobj(struct obj *obj)
boolean
mergable(register struct obj *otmp, register struct obj *obj)
{
int objnamelth = 0, otmpnamelth = 0;
size_t objnamelth = 0, otmpnamelth = 0;
/* fail if already the same object, if different types, if either is
explicitly marked to prevent merge, or if not mergable in general */