diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-01-22 14:44:56 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-01-22 14:44:56 +0000 |
commit | e0cdeae9428c8bea2fafdf75e3ce645b1ec559cc (patch) | |
tree | bc4e10d52bfbd7e6ed16f24a38a7ac9bbc186692 /sys/arch/hppa | |
parent | a339c7a017413a2f1f5a7f715e08ea7ac918cf08 (diff) |
mop up after deraadt
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r-- | sys/arch/hppa/dev/mem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hppa/dev/mem.c b/sys/arch/hppa/dev/mem.c index 8353270c1ea..da233863445 100644 --- a/sys/arch/hppa/dev/mem.c +++ b/sys/arch/hppa/dev/mem.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mem.c,v 1.16 2003/01/22 00:21:38 deraadt Exp $ */ +/* $OpenBSD: mem.c,v 1.17 2003/01/22 14:44:55 mickey Exp $ */ /* * Copyright (c) 1998-2002 Michael Shalayeff @@ -169,7 +169,7 @@ memattach(parent, self, aux) sc->sc_vp->vi_control = VI_CTRL; splx(s); - printf (" >> %b, ", VI_CTRL, VIPER_BITS); + printf (" >> %b,", VI_CTRL, VIPER_BITS); } #endif } else @@ -179,7 +179,7 @@ memattach(parent, self, aux) &pdc_minit, ca->ca_hpa, PAGE0->imm_spa_size)) < 0) pdc_minit.max_spa = PAGE0->imm_max_mem; - printf("size %d", pdc_minit.max_spa / (1024*1024)); + printf(" size %d", pdc_minit.max_spa / (1024*1024)); if (pdc_minit.max_spa % (1024*1024)) printf(".%d", pdc_minit.max_spa % (1024*1024)); printf("MB\n"); |