On 08/01/2016 09:09 PM, Fam Zheng wrote:
On Mon, 08/01 12:41, John Snow wrote:
- DPRINTF("CURL (AIO): Sock action %d on fd %d\n", action, fd);
+ DPRINTF("CURL (AIO): Sock action %d on fd %d\n", action, (int)fd);
switch (action) {
case CURL_POLL_IN:
aio_set_fd_handler(s->aio_context, fd, false,
Is curl_socket_t always of type long long unsigned int? why not use %llu ?
Since it is a typedef, variation between platforms is imaginable. On Linux it
is 4 bytes, the error is only seen on Windows.
Fam
Ah, there we go. The B-O-D was justified. :)