* Add cle_info argument to cle_write_reloc.

This commit is contained in:
bg- 2007-06-04 17:47:56 +00:00
parent c22b261b12
commit 0f3f14f159
3 changed files with 11 additions and 7 deletions

View file

@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* @(#)$Id: cle.c,v 1.6 2007/04/26 13:37:28 bg- Exp $
* @(#)$Id: cle.c,v 1.7 2007/06/04 17:48:19 bg- Exp $
*/
/*
@ -260,7 +260,7 @@ cle_relocate(struct cle_info *info,
addr += rela.r_addend;
ret = cle_write_reloc(segmem + rela.r_offset, &rela, addr);
ret = cle_write_reloc(segmem + rela.r_offset, &rela, addr, info);
if(ret != CLE_OK) {
return ret;
}