the sense of an error in mbchk was inverted
This commit is contained in:
parent
fc2a2dc3d7
commit
25fee2345c
2 changed files with 3 additions and 1 deletions
|
@ -4,6 +4,8 @@
|
||||||
(find_device): moved symlink code to new function
|
(find_device): moved symlink code to new function
|
||||||
Before we convert the install_device we attempt to resolve it if its a
|
Before we convert the install_device we attempt to resolve it if its a
|
||||||
symlink using the new function
|
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>
|
2003-06-17 Jochen Hoenicke <jochen@gnu.org>
|
||||||
|
|
||||||
|
|
|
@ -158,7 +158,7 @@ check_multiboot (const char *filename, FILE *fp)
|
||||||
if (mbh->load_end_addr && mbh->load_end_addr <= mbh->entry_addr)
|
if (mbh->load_end_addr && mbh->load_end_addr <= mbh->entry_addr)
|
||||||
{
|
{
|
||||||
fprintf (stderr,
|
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",
|
" (0x%lx <= 0x%lx).\n",
|
||||||
filename, mbh->load_end_addr, mbh->entry_addr);
|
filename, mbh->load_end_addr, mbh->entry_addr);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue