aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorSamuel Huang <huangs@chromium.org>2018-05-04 16:11:56 +0000
committerEdward Lesmes <ehmaldonado@google.com>2021-07-23 22:31:33 +0000
commitfd9b41c873bbb0a4bc62297291c43a4355466c90 (patch)
treee38b3fa8afae4b287a878f67422acc2b9de7f758 /README.md
parentc9f72e0570b61584a9def111f665bd1207aa43de (diff)
downloadzucchini-fd9b41c873bbb0a4bc62297291c43a4355466c90.tar.gz
[Zucchini] Format change: PatchElementHeader: Group fields by "old" and "new".
Previously PatchElementHeader members were ordered by: [old_offset, new_offset, old_length, new_length]. This CL changes the order to [old_offset, old_length, new_offset, new_length] to be consistent with PatchHeader's grouping by "old" and "new". Also improve comments in patch_read_write_unittest.cc, and fix input value in PatchElementTest.WrongExtraData. Change-Id: I0dab56b7de1ba99f0a2f686dfebdf422a9d1c3b0 Reviewed-on: https://chromium-review.googlesource.com/1043073 Commit-Queue: Samuel Huang <huangs@chromium.org> Reviewed-by: Greg Thompson <grt@chromium.org> Cr-Commit-Position: refs/heads/master@{#556076} NOKEYCHECK=True GitOrigin-RevId: cfb444ca0a5d494fc7e7beb74b0481249249671a
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 19f8cd6..42f3b3e 100644
--- a/README.md
+++ b/README.md
@@ -209,8 +209,8 @@ PatchElement self contained.
Name | Format | Description
--- | --- | ---
old_offset | uint32 | Starting offset of the element in old file.
-new_offset | uint32 | Starting offset of the element in new file.
old_length | uint32 | Length of the element in old file.
+new_offset | uint32 | Starting offset of the element in new file.
new_length | uint32 | Length of the element in new file.
exe_type | uint32 | Executable type for this unit, see `enum ExecutableType`.