commit | 298b6c70a084e87e688d19d1b3d609410121cf1d | [log] [tgz] |
---|---|---|
author | leozwang <leozwang@google.com> | Fri Aug 22 15:35:47 2014 -0700 |
committer | Elliott Hughes <enh@google.com> | Tue Dec 09 16:12:51 2014 -0800 |
tree | f96a3e673737cea04586632999a68fde44a6db5b | |
parent | 173310a27c1b58034bf47e08e58942137583fea8 [diff] |
Fix build on mac. On mac require a case. Also, this code is not portable, will fix it in long run. (cherry-pick of 0f1fda9ee80ba086e4c8960a7d153798e3cf3285.) Change-Id: I76194b62cea29bd3d21c7ba6c3da4d549bea4738
diff --git a/adb/sysdeps.h b/adb/sysdeps.h index 22f44ce..8d63d14 100644 --- a/adb/sysdeps.h +++ b/adb/sysdeps.h
@@ -524,7 +524,7 @@ static __inline__ unsigned long adb_thread_id() { - return pthread_self(); + return (unsigned long)pthread_self(); } #undef strtok_r