Skip to content

Commit 4a0c73e

Browse files
committed
Another fix for #172.
1 parent 37f964b commit 4a0c73e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uvloop/includes/stdlib.pxi

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ cdef int ssl_SSL_ERROR_WANT_READ = ssl.SSL_ERROR_WANT_READ
125125
cdef int ssl_SSL_ERROR_WANT_WRITE = ssl.SSL_ERROR_WANT_WRITE
126126
cdef int ssl_SSL_ERROR_SYSCALL = ssl.SSL_ERROR_SYSCALL
127127

128-
cdef uint64_t MAIN_THREAD_ID = <long>threading.main_thread().ident
128+
cdef uint64_t MAIN_THREAD_ID = <uint64_t>threading.main_thread().ident
129129

130130
cdef int subprocess_PIPE = subprocess.PIPE
131131
cdef int subprocess_STDOUT = subprocess.STDOUT

0 commit comments

Comments
 (0)