From 25fee2345c828d8f3c281aba44e57c34a0ca736a Mon Sep 17 00:00:00 2001 From: jthomas Date: Wed, 13 Aug 2003 04:16:44 +0000 Subject: [PATCH] the sense of an error in mbchk was inverted --- ChangeLog | 2 ++ util/mbchk.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 51c430130..7b2f38eee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,8 @@ (find_device): moved symlink code to new function Before we convert the install_device we attempt to resolve it if its a symlink using the new function + * util/mbchk.c (check_multiboot): The sense of an error message was + inverted. 2003-06-17 Jochen Hoenicke diff --git a/util/mbchk.c b/util/mbchk.c index d10e422c6..fd7185827 100644 --- a/util/mbchk.c +++ b/util/mbchk.c @@ -158,7 +158,7 @@ check_multiboot (const char *filename, FILE *fp) if (mbh->load_end_addr && mbh->load_end_addr <= mbh->entry_addr) { fprintf (stderr, - "%s: load_end_addr is not less than entry_addr" + "%s: load_end_addr is not greater than entry_addr" " (0x%lx <= 0x%lx).\n", filename, mbh->load_end_addr, mbh->entry_addr); return 0;