| Index: runtime/bin/dartutils.cc
|
| diff --git a/runtime/bin/dartutils.cc b/runtime/bin/dartutils.cc
|
| index 33e4a540177701966e9f6f47e63cc52d9e9a8fa8..35dadfc87b322bc90820b131831061864e9e3fcf 100644
|
| --- a/runtime/bin/dartutils.cc
|
| +++ b/runtime/bin/dartutils.cc
|
| @@ -634,14 +634,14 @@ Dart_CObject* CObject::NewExternalUint8Array(int length,
|
| }
|
|
|
|
|
| -static int kIllegalArgumentError = 1;
|
| +static int kArgumentError = 1;
|
| static int kOSError = 2;
|
| static int kFileClosedError = 3;
|
|
|
|
|
| CObject* CObject::IllegalArgumentError() {
|
| CObjectArray* result = new CObjectArray(CObject::NewArray(1));
|
| - result->SetAt(0, new CObjectInt32(CObject::NewInt32(kIllegalArgumentError)));
|
| + result->SetAt(0, new CObjectInt32(CObject::NewInt32(kArgumentError)));
|
| return result;
|
| }
|
|
|
|
|