summaryrefslogtreecommitdiff
path: root/env/nowhere.c
diff options
context:
space:
mode:
authorMarek BehĂșn <marek.behun@nic.cz>2021-10-22 15:47:19 +0200
committerSimon Glass <sjg@chromium.org>2021-10-31 12:26:44 -0600
commit9fc310621942d75a0865e25af6933eaed55d2337 (patch)
tree9f5de5d4f2c46f46e6fa6f7f67c2733c649fd94c /env/nowhere.c
parent5aab7f5dec8ff7679bdfe36a99364f2a7f6948f9 (diff)
env: nowhere: Cosmetic fix
Use spaces instead of tabs in assignments, since there are no lines to align assignment values to. Signed-off-by: Marek BehĂșn <marek.behun@nic.cz> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'env/nowhere.c')
-rw-r--r--env/nowhere.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/env/nowhere.c b/env/nowhere.c
index dc93b6f2e4..9ebc357dbd 100644
--- a/env/nowhere.c
+++ b/env/nowhere.c
@@ -22,7 +22,7 @@ DECLARE_GLOBAL_DATA_PTR;
*/
static int env_nowhere_init(void)
{
- gd->env_valid = ENV_INVALID;
+ gd->env_valid = ENV_INVALID;
return 0;
}
@@ -37,7 +37,7 @@ static int env_nowhere_load(void)
if (!IS_ENABLED(CONFIG_SPL_BUILD))
env_set_default(NULL, 0);
- gd->env_valid = ENV_INVALID;
+ gd->env_valid = ENV_INVALID;
return 0;
}