diff options
author | Lukas Larsson <[email protected]> | 2017-10-18 16:01:03 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2017-10-30 19:40:34 +0100 |
commit | 1b00539d6db8e349c6782bcd38ab006420734106 (patch) | |
tree | 847bc2b962ad07f7ebcc8fac6d9d062fa5b7c1db /erts/emulator/sys/common/erl_poll.c | |
parent | 56587b4c81c337d198a414334c3f6429f12cbf64 (diff) | |
download | otp-1b00539d6db8e349c6782bcd38ab006420734106.tar.gz otp-1b00539d6db8e349c6782bcd38ab006420734106.tar.bz2 otp-1b00539d6db8e349c6782bcd38ab006420734106.zip |
erts: Fix a bunch of compiler warnings
Diffstat (limited to 'erts/emulator/sys/common/erl_poll.c')
-rw-r--r-- | erts/emulator/sys/common/erl_poll.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/erts/emulator/sys/common/erl_poll.c b/erts/emulator/sys/common/erl_poll.c index 30a595c17a..7aa53e8f36 100644 --- a/erts/emulator/sys/common/erl_poll.c +++ b/erts/emulator/sys/common/erl_poll.c @@ -2059,7 +2059,8 @@ uint32_t epoll_events(int kp_fd, int fd) int ev_fd; uint32_t events; uint64_t data; - if (fscanf(f,"tfd:%d events:%x data:%lx\n", &ev_fd, &events, &data) != 3) { + if (fscanf(f,"tfd:%d events:%x data:%llx\n", &ev_fd, &events, + (unsigned long long*)&data) != 3) { fprintf(stderr,"failed to parse file %s on line %d, errno = %d\n", fname, line, errno); @@ -2125,7 +2126,8 @@ ERTS_POLL_EXPORT(erts_poll_get_selected_events)(ErtsPollSet *ps, int fd; uint32_t events; uint64_t data; - if (fscanf(f,"tfd:%d events:%x data:%lx\n", &fd, &events, &data) != 3) { + if (fscanf(f,"tfd:%d events:%x data:%llx\n", &fd, &events, + (unsigned long long*)&data) != 3) { fprintf(stderr,"failed to parse file %s on line %d, errno = %d\n", fname, line, errno); ASSERT(0); |