adb: sysdeps_win32: actually change ExitThread to _endthreadex.

Forgot to amend this into b5fea14e.

Change-Id: Id04e639eb87043901681db789d7a7925300fa867
This commit is contained in:
Josh Gao 2016-02-12 15:45:04 -08:00
parent 69c81c75df
commit d7b3749202
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ static __inline__ bool adb_thread_detach(adb_thread_t thread) {
}
static __inline__ void __attribute__((noreturn)) adb_thread_exit() {
ExitThread(0);
_endthreadex(0);
}
static __inline__ int adb_thread_setname(const std::string& name) {