haproxy/include
Willy Tarreau 6689609090 BUILD: htx: fix fprintf format inconsistency on 32-bit platforms
Building on 32 bits gives this :

  include/proto/htx.h: In function 'htx_dump':
  include/proto/htx.h:443:25: warning: format '%lu' expects argument of type 'long unsigned int', but argument 8 has type 'uint64_t {aka long long unsigned int}' [-Wformat=]
         fprintf(stderr, "htx:%p [ size=%u - data=%u - used=%u - wrap=%s - extra=%lu]\n",
                         ^
In htx_dump(), fprintf() uses %lu but the value is an uint64_t so it
doesn't match on 32-bit. Let's cast this to unsigned long long and use
%llu instead.
2018-11-26 19:37:32 +01:00
..
common MINOR: poller: move the call of tv_update_date() back to the pollers 2018-11-22 18:57:37 +01:00
import BUILD: threads/plock: fix a build issue on Clang without optimization 2017-11-20 21:06:35 +01:00
proto BUILD: htx: fix fprintf format inconsistency on 32-bit platforms 2018-11-26 19:37:32 +01:00
types MINOR: server: Add "alpn" and "npn" keywords. 2018-11-22 19:50:08 +01:00