| commit | 514df6fd607b3baa210f4faba0fa0afeb048a464 | [log] [tgz] |
|---|---|---|
| author | Alexander Aprelev <aam@google.com> | Thu Dec 07 17:42:19 2023 +0000 |
| committer | Commit Queue <dart-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Dec 07 17:42:19 2023 +0000 |
| tree | 456c5bf6275f3e5d769d7429ff50cf72784f03b7 | |
| parent | c447f0007efb6c839d9f1f9bc9229e1c07bbf0e5 [diff] |
[gardening] Fix fuchsia build breakage Follow-up to https://dart.googlesource.com/sdk/+/0ea04d407d74503fb7a7ae581727523ec979a2ed TEST=ci Change-Id: I335b3a0bdeed6b0d1d58bf9ea2ec671e7c9cf7c3 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/340381 Reviewed-by: Ryan Macnak <rmacnak@google.com> Commit-Queue: Alexander Aprelev <aam@google.com>
diff --git a/runtime/vm/os_fuchsia.cc b/runtime/vm/os_fuchsia.cc index f1582a3..3f7f03f 100644 --- a/runtime/vm/os_fuchsia.cc +++ b/runtime/vm/os_fuchsia.cc
@@ -318,7 +318,7 @@ // wrong. // // Try the new dir first, sub with the old fallback. - char* tz_dirname = kICUTZDataDir2; + const char* tz_dirname = kICUTZDataDir2; int fd = openat(AT_FDCWD, tz_dirname, O_RDONLY); if (fd < 0) { tz_dirname = kICUTZDataDir;