CVSROOT: /cvs Module name: src Changes by: [email protected] 2016/01/26 00:55:47
Modified files:
usr.sbin/vmctl : main.c
Log message:
The division "res->size /= 1024 / 1024" is a no-op: 1024 / 1024 is
evaluated first, resulting in res->size /= 1. Remove the division and
the following check, as it can never fail; it is a left-over from
previous code that didn't check the size in the caller.
>From Martin Natano
OK mlarkin@
