Add missing newline.

This commit is contained in:
isaki 2019-06-14 14:17:58 +00:00
parent 33abb5d1ba
commit 8ec8123f92
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: bootmain.c,v 1.13 2010/07/17 06:27:03 isaki Exp $ */
/* $NetBSD: bootmain.c,v 1.14 2019/06/14 14:17:58 isaki Exp $ */
/*-
* Copyright (c) 1993, 1994 Takumi Nakamura.
@ -229,7 +229,7 @@ load_file_ino(ino32_t ino, const char *fn, unsigned int addr, struct exec *heade
if ((N_GETMAGIC(*header) != OMAGIC) ||
(N_GETMID(*header) != MID_M68K)) {
B_PRINT(fn);
B_PRINT(": inappropriate format");
B_PRINT(": inappropriate format\r\n");
return 0;
}