From 2d7311b2535d07579a5bbfe9db249bf17b8a3120 Mon Sep 17 00:00:00 2001 From: Armin Novak Date: Tue, 11 Nov 2014 21:00:03 +0100 Subject: [PATCH] Fixed type of stack trace variables. --- winpr/libwinpr/thread/thread.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/winpr/libwinpr/thread/thread.h b/winpr/libwinpr/thread/thread.h index cd16c7a..73aed05 100644 --- a/winpr/libwinpr/thread/thread.h +++ b/winpr/libwinpr/thread/thread.h @@ -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; -- 2.7.4