X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fcommon%2Flttng-elf.c;h=cd10632ce46bbe6f9364d31d39aa15570be7fbaf;hb=806530f232d6b76d86f6c03263ca443aa0f5a08c;hp=cb01f7bb7d38195ed9e214ea784bd578379677c4;hpb=512df0460fc4c7a4492c8feadf45bb8da6b4c166;p=lttng-tools.git diff --git a/src/common/lttng-elf.c b/src/common/lttng-elf.c index cb01f7bb7..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; \