]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
cramfs: clean up some error messages
authorDan Carpenter <dan.carpenter@linaro.org>
Thu, 27 Jul 2023 07:16:03 +0000 (10:16 +0300)
committerTom Rini <trini@konsulko.com>
Tue, 8 Aug 2023 21:41:52 +0000 (17:41 -0400)
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>
fs/cramfs/cramfs.c

index 6c017cebc50ff1338c1acb80264618fbd00872a2..abb2de34eb05d4c2218d34002bbc6394a9aade86 100644 (file)
@@ -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;
                                }