Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
unload_pxe(): fix string in dprintf()
Fix a dprintf() message so it matches reality.

Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
  • Loading branch information
H. Peter Anvin committed Jun 17, 2016
1 parent fa1629d commit 852bd3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/fs/pxe/bios.c
Expand Up @@ -361,7 +361,7 @@ __export void unload_pxe(uint16_t flags)

api = 0xff00;
if (real_base_mem <= bios_fbm()) { /* Sanity check */
dprintf("FBM %d < real_base_mem %d\n", bios_fbm(), real_base_mem);
dprintf("FBM %d > real_base_mem %d\n", bios_fbm(), real_base_mem);
goto cant_free;
}
api++;
Expand Down

0 comments on commit 852bd3f

Please sign in to comment.