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

Unified Diff: net/cert/cert_verify_proc_mac.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/cert/cert_verify_proc_mac.cc
diff --git a/net/cert/cert_verify_proc_mac.cc b/net/cert/cert_verify_proc_mac.cc
index d298feebdaf6e95d20020e0f46df862650e3692b..c0eb0683ffaf2704641960d6b7b1756295c1bd61 100644
--- a/net/cert/cert_verify_proc_mac.cc
+++ b/net/cert/cert_verify_proc_mac.cc
@@ -678,7 +678,7 @@ int CertVerifyProcMac::VerifyInternal(
", chain_info[" << index << "].StatusBits is "
<< chain_info[index].StatusBits;
}
- for (uint32 status_code_index = 0;
+ for (uint32_t status_code_index = 0;
status_code_index < chain_info[index].NumStatusCodes;
++status_code_index) {
// As of OS X 10.9, attempting to verify a certificate chain that

Powered by Google App Engine
This is Rietveld 408576698