commit | 26efbe307eb841964635dbec7a99a8ff807f0ae3 | [log] [tgz] |
---|---|---|
author | Marek BehĂșn <marek.behun@nic.cz> | Sun Oct 17 17:36:32 2021 +0200 |
committer | Simon Glass <sjg@chromium.org> | Thu Oct 21 12:50:48 2021 -0600 |
tree | 95d924c8825bb1c1900ec6fd4b0e8579b6b23fcc | |
parent | 53317c9fc3f8bb6831697d9a7fa280326931ef65 [diff] |
env: Use better name for variable in env_get_f() The `nxt` variable actually points to the terminating null-byte of the current env var, and the next env var is at `nxt + 1`, not `nxt`. So a better name for this variable is `end`. Signed-off-by: Marek BehĂșn <marek.behun@nic.cz> Reviewed-by: Simon Glass <sjg@chromium.org>