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

Unified Diff: base/pickle.cc

Issue 342014: Fix build breakage at r30320. (Closed)
Patch Set: Created 11 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/pickle.cc
diff --git a/base/pickle.cc b/base/pickle.cc
index be76cf5ab1665e1c3719b981e1e8272fb73c13fc..491bc3d314a49523640150b731c327b1048acdf9 100644
--- a/base/pickle.cc
+++ b/base/pickle.cc
@@ -369,7 +369,7 @@ char* Pickle::BeginWriteData(int length) {
}
void Pickle::TrimWriteData(int new_length) {
- DCHECK_NE(variable_buffer_offset_, 0);
+ DCHECK_NE(variable_buffer_offset_, 0U);
// Fetch the the variable buffer size
int* cur_length = reinterpret_cast<int*>(
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698