Merge pull request #2199 from akallabeth/backtrace_fix

Fixed type of stack trace variables.
This commit is contained in:
Martin Fleisz
2014-11-13 16:11:08 +01:00

View File

@@ -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;