Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Unified Diff: net/base/network_interfaces_win.cc

Issue 1158923005: Use the exact-width integer types defined in <stdint.h> rather than (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tweak comments. Exclude mime_sniffer*. Rebase. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/base/network_interfaces_win.cc
diff --git a/net/base/network_interfaces_win.cc b/net/base/network_interfaces_win.cc
index e2383c7e413d4e00e7ff1902ae6c23534c9af898..ec9aeeb19f713f4a3b2a6ed474e02184cc8279cf 100644
--- a/net/base/network_interfaces_win.cc
+++ b/net/base/network_interfaces_win.cc
@@ -146,7 +146,7 @@ bool GetNetworkListImpl(NetworkInterfaceList* networks,
continue;
}
- uint32 index =
+ uint32_t index =
(family == AF_INET) ? adapter->IfIndex : adapter->Ipv6IfIndex;
// From http://technet.microsoft.com/en-us/ff568768(v=vs.60).aspx, the

Powered by Google App Engine
This is Rietveld 408576698