diff options
author | Peter Robinson <pbrobinson@gmail.com> | 2022-01-02 11:38:35 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-01-14 14:36:57 -0500 |
commit | f6f27be146b6313cf4b1cee99a671d3097419ca8 (patch) | |
tree | 85600eb25438a6097d5d5cce205bfe760432431e | |
parent | 226fce6108fe364e35f3eb9a84ff1a7ec93727ce (diff) | |
download | u-boot-f6f27be146b6313cf4b1cee99a671d3097419ca8.zip u-boot-f6f27be146b6313cf4b1cee99a671d3097419ca8.tar.gz u-boot-f6f27be146b6313cf4b1cee99a671d3097419ca8.tar.bz2 |
env: fat: Add new lines at the end of print statements
Add some new line feeds at the end of print messages to make things
easier to read on the console. The other env options do this so
this is just an omission for FAT env.
Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
-rw-r--r-- | env/fat.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -77,7 +77,7 @@ static int env_fat_save(void) * This printf is embedded in the messages from env_save that * will calling it. The missing \n is intentional. */ - printf("Unable to use %s %d:%d... ", + printf("Unable to use %s %d:%d... \n", CONFIG_ENV_FAT_INTERFACE, dev, part); return 1; } @@ -93,7 +93,7 @@ static int env_fat_save(void) * This printf is embedded in the messages from env_save that * will calling it. The missing \n is intentional. */ - printf("Unable to write \"%s\" from %s%d:%d... ", + printf("Unable to write \"%s\" from %s%d:%d... \n", file, CONFIG_ENV_FAT_INTERFACE, dev, part); return 1; } @@ -135,7 +135,7 @@ static int env_fat_load(void) * This printf is embedded in the messages from env_save that * will calling it. The missing \n is intentional. */ - printf("Unable to use %s %d:%d... ", + printf("Unable to use %s %d:%d... \n", CONFIG_ENV_FAT_INTERFACE, dev, part); goto err_env_relocate; } @@ -153,7 +153,7 @@ static int env_fat_load(void) * This printf is embedded in the messages from env_save that * will calling it. The missing \n is intentional. */ - printf("Unable to read \"%s\" from %s%d:%d... ", + printf("Unable to read \"%s\" from %s%d:%d... \n", CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part); goto err_env_relocate; } |