svn commit: r334540 - head/usr.bin/top

Rodney W. Grimes freebsd at pdx.rh.CN85.dnsmgr.net
Sat Jun 2 23:53:10 UTC 2018


[ Charset UTF-8 unsupported, converting... ]
> Author: eadler
> Date: Sat Jun  2 21:40:45 2018
> New Revision: 334540
> URL: https://svnweb.freebsd.org/changeset/base/334540
> 
> Log:
>   top(1): cleanup memory allocation and warnings
>   
>   - Prefer calloc over malloc. This is more predicable and we're not in a
>   performance sensitive context. [1]
>   - Remove bogus comment (obsolete from prior commit). [2]
>   - Remove void casts and type casts of NULL
>   - Remove redundant declaration of 'quit'
>   - Add additional const
>   
>   Reported by:	kib [1], vangyzen [2]
> 
> Modified:
>   head/usr.bin/top/display.c
>   head/usr.bin/top/machine.c
>   head/usr.bin/top/screen.c
>   head/usr.bin/top/screen.h
>   head/usr.bin/top/utils.c
...

> 
> Modified: head/usr.bin/top/screen.c
> ==============================================================================
> --- head/usr.bin/top/screen.c	Sat Jun  2 21:16:20 2018	(r334539)
> +++ head/usr.bin/top/screen.c	Sat Jun  2 21:40:45 2018	(r334540)
> @@ -3,7 +3,7 @@
>   *  Version 3
>   *
>   *  This program may be freely redistributed,
> - *  but this entire comment MUST remain intact.
> + *  but this entire ceomment MUST remain intact.

I know you have already fixed this spelling error,
but I believe there are some other commits that actually
removed either this string, or some part of "this entire"
comment that is to "remain intact".

Regards,
-- 
Rod Grimes                                                 rgrimes at freebsd.org


More information about the svn-src-head mailing list