X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fcommon%2Flttng-elf.c;h=cd10632ce46bbe6f9364d31d39aa15570be7fbaf;hb=806530f232d6b76d86f6c03263ca443aa0f5a08c;hp=52e05f0c6fe825f60a465aabe49d39f653140e88;hpb=ef3dfe5d31c88fb548189a6441aaf8b2afc0bd4b;p=lttng-tools.git diff --git a/src/common/lttng-elf.c b/src/common/lttng-elf.c index 52e05f0c6..cd10632ce 100644 --- a/src/common/lttng-elf.c +++ b/src/common/lttng-elf.c @@ -56,13 +56,13 @@ do { \ switch (sizeof(x)) { \ case 8: \ - x = be64toh(x); \ + x = be64toh((uint64_t)x); \ break; \ case 4: \ - x = be32toh(x); \ + x = be32toh((uint32_t)x); \ break; \ case 2: \ - x = be16toh(x); \ + x = be16toh((uint16_t)x); \ break; \ case 1: \ break; \ @@ -861,7 +861,7 @@ int lttng_elf_get_symbol_offset(int fd, char *symbol, uint64_t *offset) */ ret = lttng_elf_convert_addr_in_text_to_offset(elf, addr, offset); if (ret) { - DBG("Cannot convet addr to offset."); + DBG("Cannot convert addr to offset."); goto free_string_table_data; }