Wrap long line.

This commit is contained in:
Peter Wemm 2004-06-29 03:13:54 +00:00
parent ef0ebfc351
commit 5b201fdcaa

View File

@ -562,7 +562,9 @@ link_elf_load_file(linker_class_t cls, const char *filename,
if (ra != ef->nrela)
panic("lost rela");
if (mapbase != (vm_offset_t)ef->address + mapsize)
panic("mapbase 0x%lx != address %p + mapsize 0x%lx (0x%lx)\n", mapbase, ef->address, mapsize, (vm_offset_t)ef->address + mapsize);
panic("mapbase 0x%lx != address %p + mapsize 0x%lx (0x%lx)\n",
mapbase, ef->address, mapsize,
(vm_offset_t)ef->address + mapsize);
/* Local intra-module relocations */
link_elf_reloc_local(lf);