[PATCH] cramfs: clean up some error messages

This line break is not done correctly. We don't want to have all those tabs in the printed output.
Signed-off-by: Dan Carpenter dan.carpenter@linaro.org --- fs/cramfs/cramfs.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/fs/cramfs/cramfs.c b/fs/cramfs/cramfs.c index 6c017cebc50f..abb2de34eb05 100644 --- a/fs/cramfs/cramfs.c +++ b/fs/cramfs/cramfs.c @@ -166,8 +166,7 @@ static unsigned long cramfs_resolve (unsigned long begin, unsigned long offset, unsigned long ret; char *link; if (p && strlen(p)) { - printf ("unsupported symlink to \ - non-terminal path\n"); + printf ("unsupported symlink to non-terminal path\n"); return 0; } link = cramfs_uncompress_link (begin, @@ -177,8 +176,7 @@ static unsigned long cramfs_resolve (unsigned long begin, unsigned long offset, namelen, namelen, name); return 0; } else if (link[0] == '/') { - printf ("unsupported symlink to \ - absolute path\n"); + printf ("unsupported symlink to absolute path\n"); free (link); return 0; }

On Thu, 27 Jul 2023 at 08:32, Dan Carpenter dan.carpenter@linaro.org wrote:
This line break is not done correctly. We don't want to have all those tabs in the printed output.
Signed-off-by: Dan Carpenter dan.carpenter@linaro.org
fs/cramfs/cramfs.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-)
Reviewed-by: Simon Glass sjg@chromium.org

On Thu, Jul 27, 2023 at 10:16:03AM +0300, Dan Carpenter wrote:
This line break is not done correctly. We don't want to have all those tabs in the printed output.
Signed-off-by: Dan Carpenter dan.carpenter@linaro.org Reviewed-by: Simon Glass sjg@chromium.org
Applied to u-boot/next, thanks!
participants (3)
-
Dan Carpenter
-
Simon Glass
-
Tom Rini