From d508ec71ebc7985b02851f79765f025a555d7061 Mon Sep 17 00:00:00 2001 From: Jason Evans Date: Tue, 7 Jul 2015 20:28:22 -0700 Subject: [PATCH] Fix a variable declaration typo. --- src/tsd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tsd.c b/src/tsd.c index b8886da6..2100833a 100644 --- a/src/tsd.c +++ b/src/tsd.c @@ -152,7 +152,7 @@ _tls_callback(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) #endif JEMALLOC_SECTION(".CRT$XLY") JEMALLOC_ATTR(used) static BOOL (WINAPI *const tls_callback)(HINSTANCE hinstDLL, - DWORD fdwRerason, LPVOID lpvReserved) = _tls_callback; + DWORD fdwReason, LPVOID lpvReserved) = _tls_callback; #endif #if (!defined(JEMALLOC_MALLOC_THREAD_CLEANUP) && !defined(JEMALLOC_TLS) && \