diff options
author | Bdale Garbee <bdale@gag.com> | 2009-09-02 23:17:37 -0600 |
---|---|---|
committer | Bdale Garbee <bdale@gag.com> | 2009-09-02 23:17:37 -0600 |
commit | cb4a73f3b65ba72f645fd37ab8712829c9537bf8 (patch) | |
tree | a3822a2709d715abd804674de7264fd1566fea40 /src/ao_ee.c | |
parent | 9ddd8696b4004ccc03238d95a8c2a1d07075e0fb (diff) | |
parent | e2e449d5c23356e913f312de1fb2611a9dd5a352 (diff) |
Merge commit 'origin/master'
Diffstat (limited to 'src/ao_ee.c')
-rw-r--r-- | src/ao_ee.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ao_ee.c b/src/ao_ee.c index f299b925..9b6db234 100644 --- a/src/ao_ee.c +++ b/src/ao_ee.c @@ -271,6 +271,7 @@ ao_ee_write(uint32_t pos, uint8_t *buf, uint16_t len) __reentrant /* See how much is left */ buf += this_len; len -= this_len; + pos += this_len; } return 1; } @@ -306,6 +307,7 @@ ao_ee_read(uint32_t pos, uint8_t *buf, uint16_t len) __reentrant /* See how much is left */ buf += this_len; len -= this_len; + pos += this_len; } return 1; } |