Re: [PATCH v3 07/13] env: Use better name for variable in env_get_f()

2021-10-21 Thread Simon Glass
From: Marek Behún 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 Reviewed-by: Simon Glass --- cmd/nvedit.c | 8 1 file cha

[PATCH v3 07/13] env: Use better name for variable in env_get_f()

2021-10-17 Thread Marek Behún
From: Marek Behún 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 Reviewed-by: Simon Glass --- cmd/nvedit.c | 8 1 file cha