| Index: runtime/bin/platform.cc | 
| diff --git a/runtime/bin/platform.cc b/runtime/bin/platform.cc | 
| index 1d3814dc2bf1612d050529bfe7d09918260f5172..15bfe3d2d45fe72b7600e3da9bfb4f229d70fe44 100644 | 
| --- a/runtime/bin/platform.cc | 
| +++ b/runtime/bin/platform.cc | 
| @@ -94,8 +94,7 @@ void FUNCTION_NAME(Platform_Environment)(Dart_NativeArguments args) { | 
| intptr_t count = 0; | 
| char** env = Platform::Environment(&count); | 
| if (env == NULL) { | 
| -    OSError error(-1, | 
| -                  "Failed to retrieve environment variables.", | 
| +    OSError error(-1, "Failed to retrieve environment variables.", | 
| OSError::kUnknown); | 
| Dart_SetReturnValue(args, DartUtils::NewDartOSError(&error)); | 
| } else { | 
|  |