diff options
author | 2009-04-23 07:30:03 +0000 | |
---|---|---|
committer | 2009-04-23 07:30:03 +0000 | |
commit | ca50200b230d11eb1d4be7c04925d6fc0a389dcb (patch) | |
tree | f39d1b50954b2f6c1555448e0c0f806be6330386 | |
parent | print the type of the icmp message we're bitching about when debugging is (diff) | |
download | wireguard-openbsd-ca50200b230d11eb1d4be7c04925d6fc0a389dcb.tar.xz wireguard-openbsd-ca50200b230d11eb1d4be7c04925d6fc0a389dcb.zip |
add missing newline in the unknown model case
-rw-r--r-- | sys/arch/amd64/amd64/est.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/est.c b/sys/arch/amd64/amd64/est.c index 3794db03758..7f54997c322 100644 --- a/sys/arch/amd64/amd64/est.c +++ b/sys/arch/amd64/amd64/est.c @@ -1,4 +1,4 @@ -/* $OpenBSD: est.c,v 1.10 2009/02/24 19:32:37 deraadt Exp $ */ +/* $OpenBSD: est.c,v 1.11 2009/04/23 07:30:03 jsg Exp $ */ /* * Copyright (c) 2003 Michael Eriksson. * All rights reserved. @@ -207,7 +207,7 @@ p3_get_bus_clock(struct cpu_info *ci) } break; default: - printf("%s: unknown i686 model 0x%x, can't get bus clock", + printf("%s: unknown i686 model 0x%x, can't get bus clock\n", ci->ci_dev->dv_xname, ci->ci_model); } } |