From: Marek Vasut Date: Sat, 13 Jul 2024 13:19:19 +0000 (+0200) Subject: env: Remove duplicate newlines X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=d9db7a847546720b7b0879baf3c2ecc85dc1c5ec;p=u-boot.git env: Remove duplicate newlines Drop all duplicate newlines. No functional change. Signed-off-by: Marek Vasut --- diff --git a/env/common.c b/env/common.c index d8c276dddf..8d47d72605 100644 --- a/env/common.c +++ b/env/common.c @@ -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;