diff options
author | Jason Peel <jsyn@cvs.openbsd.org> | 2002-06-11 05:18:23 +0000 |
---|---|---|
committer | Jason Peel <jsyn@cvs.openbsd.org> | 2002-06-11 05:18:23 +0000 |
commit | 216b8054f7c51d8f9ad3af1c4e652c7a0fb9c999 (patch) | |
tree | e4204152d63b907afc718429463d068bebbcbcd8 /sys/arch/hppa | |
parent | bbeea69a18aa990c0fc985fd84aec1c97773089e (diff) |
err(3) appends a newline already; ok miod@
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r-- | sys/arch/hppa/stand/mkboot/mkboot.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hppa/stand/mkboot/mkboot.c b/sys/arch/hppa/stand/mkboot/mkboot.c index 26cb8cb7ef4..be86c1ea58a 100644 --- a/sys/arch/hppa/stand/mkboot/mkboot.c +++ b/sys/arch/hppa/stand/mkboot/mkboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mkboot.c,v 1.10 2002/03/14 01:26:32 millert Exp $ */ +/* $OpenBSD: mkboot.c,v 1.11 2002/06/11 05:18:22 jsyn Exp $ */ /* * Copyright (c) 1990, 1993 @@ -43,7 +43,7 @@ static char copyright[] = #endif /* not lint */ #ifndef lint -static char rcsid[] = "$OpenBSD: mkboot.c,v 1.10 2002/03/14 01:26:32 millert Exp $"; +static char rcsid[] = "$OpenBSD: mkboot.c,v 1.11 2002/06/11 05:18:22 jsyn Exp $"; #endif /* not lint */ #endif @@ -253,7 +253,7 @@ putfile(from_file, to) } else if (*(u_char *)&ex == 0x1f && ((u_char *)&ex)[1] == 0x8b) { entry = 0; } else - errx(1, "%s: bad magic number\n", from_file); + errx(1, "%s: bad magic number", from_file); entry += sizeof(load); lseek(to, sizeof(load), SEEK_CUR); |