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;