git: 87512200a5b2 - stable/12 - libsa: remove leftover whitespace
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 08 Oct 2021 06:11:01 UTC
The branch stable/12 has been updated by kevans: URL: https://cgit.FreeBSD.org/src/commit/?id=87512200a5b23eee78e453e6318f1aef8b5e332e commit 87512200a5b23eee78e453e6318f1aef8b5e332e Author: Toomas Soome <tsoome@FreeBSD.org> AuthorDate: 2020-08-19 20:41:22 +0000 Commit: Kyle Evans <kevans@FreeBSD.org> CommitDate: 2021-10-08 05:24:27 +0000 libsa: remove leftover whitespace Tiny cleanup, no functional changes. (cherry picked from commit 5949d13fabc43a728b2122277f44a6366e3b9270) --- stand/libsa/environment.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stand/libsa/environment.c b/stand/libsa/environment.c index 94e4a207908b..53b6a75cc020 100644 --- a/stand/libsa/environment.c +++ b/stand/libsa/environment.c @@ -98,7 +98,7 @@ env_setenv(const char *name, int flags, const void *value, ev->ev_prev = NULL; ev->ev_next = NULL; /* Search for the record to insert before */ - for (last = NULL, curr = environ; curr != NULL; + for (last = NULL, curr = environ; curr != NULL; last = curr, curr = curr->ev_next) { if (strcmp(ev->ev_name, curr->ev_name) < 0) {