[PATCH] env: sf: cosmetic: remove unnecessary space

Remove the unnecessary space before the 2 "done:" labels in env_sf_save().
Signed-off-by: Patrick Delaunay patrick.delaunay@foss.st.com ---
env/sf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/env/sf.c b/env/sf.c index 91ed2860ed..42d762714e 100644 --- a/env/sf.c +++ b/env/sf.c @@ -139,7 +139,7 @@ static int env_sf_save(void)
printf("Valid environment: %d\n", (int)gd->env_valid);
- done: +done: if (saved_buffer) free(saved_buffer);
@@ -236,7 +236,7 @@ static int env_sf_save(void) ret = 0; puts("done\n");
- done: +done: if (saved_buffer) free(saved_buffer);

On Mon, Jan 04, 2021 at 02:41:31PM +0100, Patrick Delaunay wrote:
Remove the unnecessary space before the 2 "done:" labels in env_sf_save().
Signed-off-by: Patrick Delaunay patrick.delaunay@foss.st.com
Applied to u-boot/master, thanks!
participants (2)
-
Patrick Delaunay
-
Tom Rini