diff options
-rw-r--r-- | utils/bswap.h | 2 | ||||
-rw-r--r-- | utils/readsoname.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/utils/bswap.h b/utils/bswap.h index 1742d2507..7ca267bdd 100644 --- a/utils/bswap.h +++ b/utils/bswap.h @@ -38,7 +38,7 @@ static __inline__ uint32_t bswap_32(uint32_t x) uint32_t res; swab((void*)&x, (void*)&res, sizeof(uint32_t)); - + return res; } diff --git a/utils/readsoname.h b/utils/readsoname.h index 78d2216e0..91823ff7a 100644 --- a/utils/readsoname.h +++ b/utils/readsoname.h @@ -1,4 +1,4 @@ -char *readsoname(char *name, FILE *file, int expected_type, +char *readsoname(char *name, FILE *file, int expected_type, int *type, int elfclass); char *readsoname32(char *name, FILE *file, int expected_type, int *type); char *readsoname64(char *name, FILE *file, int expected_type, int *type); |