diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-01-11 05:12:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-01-11 05:12:41 +0000 |
commit | b3067fd524234e263e58b215d0fb24d414bf1c34 (patch) | |
tree | 5c1576265dded5700ab387af81051fabd39f3396 /sys/arch/pc532/stand | |
parent | 9ee95b4b405b050512cf782b508d774f4601a6b5 (diff) |
panic prints a newline for you, don't do it in the panic string
Diffstat (limited to 'sys/arch/pc532/stand')
-rw-r--r-- | sys/arch/pc532/stand/inflate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/pc532/stand/inflate.c b/sys/arch/pc532/stand/inflate.c index 3ebe08c086a..a8036c731a5 100644 --- a/sys/arch/pc532/stand/inflate.c +++ b/sys/arch/pc532/stand/inflate.c @@ -31,7 +31,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: inflate.c,v 1.1 1995/10/18 08:51:23 deraadt Exp $ + * $Id: inflate.c,v 1.2 1999/01/11 05:11:48 millert Exp $ */ #include <sys/param.h> @@ -205,7 +205,7 @@ void nextstate() switch (state) { case 0: if (N_BADMAG(x)) - panic("Bad exec format\n"); + panic("Bad exec format"); load = addr = (uch *)(x.a_entry & 0x00ffff00); printf("Uncompressing @ 0x%x\n", addr); bsize = x.a_text; |