Skip to content
Snippets Groups Projects
Commit da331293 authored by Mark Michelson's avatar Mark Michelson
Browse files

Cast this value since a uint64_t is not the same

as an unsigned long long on a 64-bit machine.

Reported by kpfleming on IRC



git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@157874 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent e316c219
No related branches found
No related tags found
No related merge requests found
......@@ -158,7 +158,7 @@ static void timerfd_timer_ack(int handle, unsigned int quantity)
} while (read_result != sizeof(expirations));
if (expirations != quantity) {
ast_debug(2, "Expected to acknowledge %u ticks but got %llu instead\n", quantity, expirations);
ast_debug(2, "Expected to acknowledge %u ticks but got %llu instead\n", quantity, (unsigned long long) expirations);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment