Replace image->entry with image->priv.

This commit is contained in:
Michael Brown
2007-01-14 04:04:28 +00:00
parent 3bdbfe1f00
commit 797edf28b7
4 changed files with 16 additions and 8 deletions

View File

@@ -136,8 +136,8 @@ int elf_load ( struct image *image ) {
return rc;
}
/* Fill in entry point address */
image->entry = ehdr.e_entry;
/* Record execution entry point in image private data field */
image->priv.phys = ehdr.e_entry;
return 0;
}