the sense of an error in mbchk was inverted

This commit is contained in:
jthomas 2003-08-13 04:16:44 +00:00
parent fc2a2dc3d7
commit 25fee2345c
2 changed files with 3 additions and 1 deletions

View file

@ -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 <jochen@gnu.org>

View file

@ -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;