Re: svn commit: r348798 - head/sys/amd64/amd64

2019-06-08 Thread Tijl Coosemans
On Sat, 8 Jun 2019 13:40:57 + (UTC) Konstantin Belousov wrote: > Author: kib > Date: Sat Jun 8 13:40:57 2019 > New Revision: 348798 > URL: https://svnweb.freebsd.org/changeset/base/348798 > > Log: > amd64 trap.c: Modernize syntax around trap_msg[]. > > Convert the array to use C99

svn commit: r348798 - head/sys/amd64/amd64

2019-06-08 Thread Konstantin Belousov
Author: kib Date: Sat Jun 8 13:40:57 2019 New Revision: 348798 URL: https://svnweb.freebsd.org/changeset/base/348798 Log: amd64 trap.c: Modernize syntax around trap_msg[]. Convert the array to use C99 initializers. Make it constant. Replace MAX_TRAP_MSG with nitems(). Sponsored