summaryrefslogtreecommitdiff
path: root/src/os_win/os_thread.c
diff options
context:
space:
mode:
authorSusan LoVerso <sue@wiredtiger.com>2014-10-28 14:14:58 -0400
committerSusan LoVerso <sue@wiredtiger.com>2014-10-28 14:14:58 -0400
commit504892301989ec94969f581c071905e1e1175586 (patch)
treeae82a4aee858d2fc33a13682bbc6aa57074b26e9 /src/os_win/os_thread.c
parentb16a0ed6df68a8ea225d5bf7dcd81b4790d952b7 (diff)
downloadmongo-504892301989ec94969f581c071905e1e1175586.tar.gz
Add pid:tid separator back in.
Diffstat (limited to 'src/os_win/os_thread.c')
-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 9d1ddfc6d6f..5e3feb2d9cb 100644
--- a/src/os_win/os_thread.c
+++ b/src/os_win/os_thread.c
@@ -49,7 +49,7 @@ __wt_thread_id(char* buf, size_t buflen)
size_t len;
len = (size_t)snprintf(
- buf, buflen, "%" PRIu64, (uint64_t)GetCurrentProcessId());
+ buf, buflen, "%" PRIu64i ":", (uint64_t)GetCurrentProcessId());
if (len < buflen) {
self = GetCurrentThreadId();
__wt_raw_to_hex_mem((const uint8_t *)&self,