memzap

replay memory writes
git clone git://git.2f30.org/memzap
Log | Files | Refs | README | LICENSE

commit d373a2f9a9542fa8b6b25be16c70eff6d03bccf7
parent e8ab6b008c9f9bf73cfe086452ee25811db7c85e
Author: sin <sin@2f30.org>
Date:   Sun,  3 Mar 2013 00:41:42 +0000

Update mdiff-fmt

Rename `size' to `len'.

Diffstat:
Mmdiff-fmt | 7+++----
1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/mdiff-fmt b/mdiff-fmt @@ -12,11 +12,11 @@ struct mdiff_region { /* Offset into memory where this region should * be written to */ uint32_t offset; - /* Size of this memory diff region */ - uint32_t size; + /* Length of this memory diff region */ + uint32_t len; /* Actual data */ char buf[]; }; We have a fixed header at the start and a series of -`mdiff_region' structures following. -\ No newline at end of file +`mdiff_region' structures following.