]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
env: Remove duplicate newlines
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Sat, 13 Jul 2024 13:19:19 +0000 (15:19 +0200)
committerTom Rini <trini@konsulko.com>
Mon, 15 Jul 2024 18:12:17 +0000 (12:12 -0600)
Drop all duplicate newlines. No functional change.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
env/common.c

index d8c276dddfd9e2d0ae88d63ee7ec20d5ae406212..8d47d726059e11acb103d6e3a083d35c73329829 100644 (file)
@@ -394,7 +394,6 @@ void env_set_default(const char *s, int flags)
        gd->flags |= GD_FLG_ENV_DEFAULT;
 }
 
-
 /* [re]set individual variables to their value in the default environment */
 int env_set_default_vars(int nvars, char * const vars[], int flags)
 {
@@ -588,7 +587,6 @@ int env_complete(char *var, int maxv, char *cmdv[], int bufsz, char *buf,
        found = 0;
        cmdv[0] = NULL;
 
-
        while ((idx = hmatch_r(var, idx, &match, &env_htab))) {
                int vallen = strlen(match->key) + 1;