diff --git a/tools/js2c.cc b/tools/js2c.cc index 0fa9c5954d24a5..e0f3d8844718ab 100644 --- a/tools/js2c.cc +++ b/tools/js2c.cc @@ -613,8 +613,8 @@ bool Simplify(const std::vector& code, } if (simplified_count > 0) { - Debug("Simplified %d characters, ", simplified_count); - Debug("old size %d, new size %d\n", code_size, simplified->size()); + Debug("Simplified %lu characters, ", simplified_count); + Debug("old size %lu, new size %lu\n", code_size, simplified->size()); return true; } return false;