| Index: runtime/bin/dartutils.h
|
| diff --git a/runtime/bin/dartutils.h b/runtime/bin/dartutils.h
|
| index 41443f7ca0aa024d7ecd3e4ac9d0ed05999e903d..1d18b5f96e58729e7c48fd7d85dfa64065cfae06 100644
|
| --- a/runtime/bin/dartutils.h
|
| +++ b/runtime/bin/dartutils.h
|
| @@ -29,7 +29,9 @@ class OSError;
|
| * API functions return any error handles passed in as arguments, unchanged.
|
| */
|
| static inline Dart_Handle ThrowIfError(Dart_Handle handle) {
|
| - if (Dart_IsError(handle)) Dart_PropagateError(handle);
|
| + if (Dart_IsError(handle)) {
|
| + Dart_PropagateError(handle);
|
| + }
|
| return handle;
|
| }
|
|
|
|
|