Quieten gcc paranoia.

This commit is contained in:
Peter Wemm 1999-07-06 13:23:56 +00:00
parent e92d69c442
commit 8bd48ca8d4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=48636
2 changed files with 4 additions and 4 deletions

View file

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* from: Id: machdep.c,v 1.193 1996/06/18 01:22:04 bde Exp
* $Id: identcpu.c,v 1.69 1999/07/06 06:25:38 green Exp $
* $Id: identcpu.c,v 1.70 1999/07/06 12:42:26 peter Exp $
*/
#include "opt_cpu.h"
@ -128,7 +128,7 @@ void
printcpuinfo(void)
{
u_int regs[4], nreg;
u_int regs[4], nreg = 0;
cpu_class = i386_cpus[cpu].cpu_class;
printf("CPU: ");
strncpy(cpu_model, i386_cpus[cpu].cpu_name, sizeof cpu_model);

View file

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* from: Id: machdep.c,v 1.193 1996/06/18 01:22:04 bde Exp
* $Id: identcpu.c,v 1.69 1999/07/06 06:25:38 green Exp $
* $Id: identcpu.c,v 1.70 1999/07/06 12:42:26 peter Exp $
*/
#include "opt_cpu.h"
@ -128,7 +128,7 @@ void
printcpuinfo(void)
{
u_int regs[4], nreg;
u_int regs[4], nreg = 0;
cpu_class = i386_cpus[cpu].cpu_class;
printf("CPU: ");
strncpy(cpu_model, i386_cpus[cpu].cpu_name, sizeof cpu_model);