Chromium Code Reviews| Index: samples/pdfium_test.cc |
| diff --git a/samples/pdfium_test.cc b/samples/pdfium_test.cc |
| index b217f89c705366198e1642ecab412af4bcb4e12e..6a27284a66e4929615249756db95734f2792fab3 100644 |
| --- a/samples/pdfium_test.cc |
| +++ b/samples/pdfium_test.cc |
| @@ -105,7 +105,7 @@ static bool GetExternalData(const Options& options, |
| return false; |
| } |
| result_data->data = const_cast<const char*>(data_buffer); |
| - result_data->raw_size = data_length; |
| + result_data->raw_size = static_cast<int>data_length; |
|
Tom Sepez
2015/01/12 18:28:09
Typo: missing parens, eg. static_cast<int>(data_le
rmcilroy
2015/01/12 20:09:12
Opps! Done.
|
| return true; |
| } |
| #endif // V8_USE_EXTERNAL_STARTUP_DATA |