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

Unified Diff: src/woff2.cc

Issue 77173003: [OTS] build failure on android_aosp (Closed) Base URL: http://ots.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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: src/woff2.cc
===================================================================
--- src/woff2.cc (revision 106)
+++ src/woff2.cc (working copy)
@@ -826,7 +826,7 @@
if (!ReadBase128(file, &src_length)) {
return OTS_FAILURE();
}
- } else if ((flag_byte >> 6) == kShortFlagsContinue) {
+ } else if (static_cast<uint32_t>(flag_byte >> 6) == kShortFlagsContinue) {
// The compressed data for this table is in a previuos table, so we set
// the src_length to zero.
src_length = 0;
« 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