The branch stable/12 has been updated by kevans:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=87512200a5b23eee78e453e6318f1aef8b5e332e

commit 87512200a5b23eee78e453e6318f1aef8b5e332e
Author:     Toomas Soome <[email protected]>
AuthorDate: 2020-08-19 20:41:22 +0000
Commit:     Kyle Evans <[email protected]>
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) {

Reply via email to