commit | 7a142ea8d5f82799b464c560cfe06c457a783cc8 | [log] [tgz] |
---|---|---|
author | Joshua Seaton <joshuaseaton@google.com> | Sat Oct 31 21:35:12 2020 +0000 |
committer | CQ Bot <commit-bot@chromium.org> | Sat Oct 31 21:35:12 2020 +0000 |
tree | 414bf0ded8dd9117f29d28c5b801c9a205b6dc7f | |
parent | 541078d7d163e577a7515fa40042fc4c78b65b42 [diff] |
[zbitl] Fix minor error string bug A space was missing. Change-Id: I5a54ca4cd49079c0fde179e1a8cd41afbde52d22 Reviewed-on: https://fuchsia-review.googlesource.com/c/fuchsia/+/445934 Fuchsia-Auto-Submit: Joshua Seaton <joshuaseaton@google.com> Reviewed-by: Roland McGrath <mcgrathr@google.com> Testability-Review: Roland McGrath <mcgrathr@google.com> Commit-Queue: Joshua Seaton <joshuaseaton@google.com>
diff --git a/zircon/system/ulib/zbitl/include/lib/zbitl/error_string.h b/zircon/system/ulib/zbitl/include/lib/zbitl/error_string.h index 9da810e..075e1538 100644 --- a/zircon/system/ulib/zbitl/include/lib/zbitl/error_string.h +++ b/zircon/system/ulib/zbitl/include/lib/zbitl/error_string.h
@@ -16,7 +16,7 @@ template <typename ViewError> std::string ViewErrorString(const ViewError& error) { std::string s{error.zbi_error}; - s += "at offset "; + s += " at offset "; s += std::to_string(error.item_offset); if (error.storage_error) { s += ": ";