| Index: runtime/bin/filter.cc
|
| diff --git a/runtime/bin/filter.cc b/runtime/bin/filter.cc
|
| index 0babea9e5f2a74bda8806d75470383a6a26cc503..3ea389d1549112ffe6db6d68c22fa74d54fbf319 100644
|
| --- a/runtime/bin/filter.cc
|
| +++ b/runtime/bin/filter.cc
|
| @@ -82,8 +82,8 @@ void FUNCTION_NAME(Filter_Process)(Dart_NativeArguments args) {
|
| Dart_Handle filter_obj = Dart_GetNativeArgument(args, 0);
|
| Filter* filter = GetFilter(filter_obj);
|
| Dart_Handle data_obj = Dart_GetNativeArgument(args, 1);
|
| - intptr_t start = DartUtils::GetIntegerValue(Dart_GetNativeArgument(args, 2));
|
| - intptr_t end = DartUtils::GetIntegerValue(Dart_GetNativeArgument(args, 3));
|
| + intptr_t start = DartUtils::GetIntptrValue(Dart_GetNativeArgument(args, 2));
|
| + intptr_t end = DartUtils::GetIntptrValue(Dart_GetNativeArgument(args, 3));
|
| intptr_t chunk_length = end - start;
|
| intptr_t length;
|
| Dart_TypedData_Type type;
|
|
|