Skip to content

Commit

Permalink
env: nowhere: Cosmetic fix
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
elkablo authored and sjg20 committed Oct 31, 2021
1 parent 5aab7f5 commit 9fc3106
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions env/nowhere.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -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;
}
Expand Down

0 comments on commit 9fc3106

Please sign in to comment.