diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2002-03-21 17:37:58 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2002-03-21 17:37:58 +0000 |
commit | 94b926ae25f68cad0b19fcd4fe39e0e4bd760997 (patch) | |
tree | 6b85b7fa3980220b6665b186c55487522b93fdb3 | |
parent | b169431d221c0823cde0750a65382c1c41b8efe4 (diff) |
dont forget the break.
-rw-r--r-- | sys/arch/macppc/macppc/cpu.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/macppc/macppc/cpu.c b/sys/arch/macppc/macppc/cpu.c index 3d4562cab2f..ba87ca34cc0 100644 --- a/sys/arch/macppc/macppc/cpu.c +++ b/sys/arch/macppc/macppc/cpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.c,v 1.3 2002/03/21 17:37:11 drahn Exp $ */ +/* $OpenBSD: cpu.c,v 1.4 2002/03/21 17:37:57 drahn Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom @@ -140,6 +140,7 @@ cpuattach(parent, dev, aux) } else { sprintf(cpu_model, "7451"); } + break; case MPC7455: sprintf(cpu_model, "7455"); break; |