Fixed building with pthread_t defined as a pointer.

This commit is contained in:
Sergey Kandaurov
2017-09-27 18:34:24 +03:00
parent 9213299d1f
commit 752038eea8
2 changed files with 2 additions and 2 deletions

View File

@@ -497,7 +497,7 @@ nxt_vsprintf(u_char *buf, u_char *end, const char *fmt, va_list args)
goto number;
case 'T':
ui64 = (uint64_t) va_arg(args, nxt_tid_t);
ui64 = (uint64_t) (uintptr_t) va_arg(args, nxt_tid_t);
sign = 0;
goto number;
#if 0