summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Hows <howsdav@gmail.com>2016-05-05 15:17:05 +1000
committerAlex Gorrod <alexander.gorrod@mongodb.com>2016-05-05 15:17:05 +1000
commit75c22bc0c662622c14e5c47d99ff262cede2c6bf (patch)
tree7cc2e03ad96e206cbe73343feef10197023a37da
parent55505b5cbc3e71177094071be8ec03bb9903364f (diff)
downloadmongo-75c22bc0c662622c14e5c47d99ff262cede2c6bf.tar.gz
WT-2621 Fix missing parentesies on call to __wt_errno (#2721)
-rw-r--r--src/os_win/os_thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_win/os_thread.c b/src/os_win/os_thread.c
index 94c5a8b0ab2..2b846216442 100644
--- a/src/os_win/os_thread.c
+++ b/src/os_win/os_thread.c
@@ -21,7 +21,7 @@ __wt_thread_create(WT_SESSION_IMPL *session,
if (*tidret != 0)
return (0);
- WT_RET_MSG(session, __wt_errno, "thread create: _beginthreadex");
+ WT_RET_MSG(session, __wt_errno(), "thread create: _beginthreadex");
}
/*