aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJason Evans <jasone@canonware.com>2015-07-07 20:28:22 -0700
committerJason Evans <jasone@canonware.com>2015-07-07 20:28:22 -0700
commitd508ec71ebc7985b02851f79765f025a555d7061 (patch)
tree4ea9b55e402757224e853f7e114b1738bd28b26c /src
parentb946086b08fd9f1d989b6c26db3d734d7cfe0be4 (diff)
downloadjemalloc-d508ec71ebc7985b02851f79765f025a555d7061.tar.gz
Fix a variable declaration typo.
Diffstat (limited to 'src')
-rw-r--r--src/tsd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tsd.c b/src/tsd.c
index b8886da..2100833 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) && \