mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-21 06:06:59 -04:00
BUILD: debug: fix build issue on clang with previous commit
Since the thread_dump_state type changed to uint, the old value in the CAS needs to be the same as well.
This commit is contained in:
parent
00c27b50c0
commit
039972b4e5
1 changed files with 1 additions and 1 deletions
|
|
@ -1311,7 +1311,7 @@ struct buffer *thread_dump_buffer = NULL;
|
|||
/* initiates a thread dump */
|
||||
void ha_thread_dump_all_to_trash()
|
||||
{
|
||||
unsigned long old;
|
||||
unsigned int old;
|
||||
|
||||
while (1) {
|
||||
old = 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue