mirror of https://github.com/FreeRDP/FreeRDP
Merge pull request #2199 from akallabeth/backtrace_fix
Fixed type of stack trace variables.
This commit is contained in:
commit
7acc61e3f6
|
@ -48,8 +48,8 @@ struct winpr_thread
|
|||
LPTHREAD_START_ROUTINE lpStartAddress;
|
||||
LPSECURITY_ATTRIBUTES lpThreadAttributes;
|
||||
#if defined(WITH_DEBUG_THREADS)
|
||||
void *create_stack[20];
|
||||
void *exit_stack[20];
|
||||
void *create_stack;
|
||||
void *exit_stack;
|
||||
#endif
|
||||
};
|
||||
typedef struct winpr_thread WINPR_THREAD;
|
||||
|
|
Loading…
Reference in New Issue