Fix a type mistake
long in c++ is 32 bits. We need 64 bits here. Review-Url: https://codereview.webrtc.org/2326253002 Cr-Commit-Position: refs/heads/master@{#14176}
This commit is contained in:
@ -21,7 +21,7 @@
|
||||
|
||||
namespace webrtc_jni {
|
||||
|
||||
typedef long NetworkHandle;
|
||||
typedef int64_t NetworkHandle;
|
||||
|
||||
// c++ equivalent of java NetworkMonitorAutoDetect.ConnectionType.
|
||||
enum NetworkType {
|
||||
|
||||
Reference in New Issue
Block a user