| Index: utils/archive/utils.dart
|
| diff --git a/utils/archive/utils.dart b/utils/archive/utils.dart
|
| index 1a0fc387cf10b75e85db59f41cf613af26143f34..ef685ed6e07d161e53492a180a9a0f0e87f5d870 100644
|
| --- a/utils/archive/utils.dart
|
| +++ b/utils/archive/utils.dart
|
| @@ -45,7 +45,7 @@ Future call(int requestType, [int id, List args]) {
|
|
|
| /** Converts [input] to a fixed-length list which C can understand. */
|
| List listForC(List input) {
|
| - var list = new List(input.length);
|
| + var list = new List.fixedLength(input.length);
|
| list.setRange(0, input.length, input);
|
| return list;
|
| }
|
|
|