diff src/unexelf.c @ 109134:5f29e7d311d1

* unexelf.c (round_up, find_section): Use ElfW macro for arguments.
author Juanma Barranquero <lekktu@gmail.com>
date Sun, 04 Jul 2010 18:07:11 +0200
parents aec1143e8d85
children 64732fa6188a
line wrap: on
line diff
--- a/src/unexelf.c	Sun Jul 04 16:40:41 2010 +0200
+++ b/src/unexelf.c	Sun Jul 04 18:07:11 2010 +0200
@@ -594,7 +594,7 @@
 /* Round X up to a multiple of Y.  */
 
 static ElfW(Addr)
-round_up (Elf32_Addr x, Elf32_Addr y)
+round_up (ElfW(Addr) x, ElfW(Addr) y)
 {
   int rem = x % y;
   if (rem == 0)
@@ -610,7 +610,8 @@
    if NOERROR is 0; we return -1 if NOERROR is nonzero.  */
 
 static int
-find_section (char *name, char *section_names, char *file_name, Elf32_Ehdr *old_file_h, Elf32_Shdr *old_section_h, int noerror)
+find_section (char *name, char *section_names, char *file_name,
+	      ElfW(Ehdr) *old_file_h, ElfW(Shdr) *old_section_h, int noerror)
 {
   int idx;
 
@@ -645,7 +646,8 @@
  *
  */
 void
-unexec (char *new_name, char *old_name, unsigned int data_start, unsigned int bss_start, unsigned int entry_address)
+unexec (char *new_name, char *old_name, unsigned int data_start,
+	unsigned int bss_start, unsigned int entry_address)
 {
   int new_file, old_file, new_file_size;