diff options
author | Dan Carpenter | 2023-07-27 10:16:03 +0300 |
---|---|---|
committer | Tom Rini | 2023-08-08 17:41:52 -0400 |
commit | 1678e269c565fc47daf09e79e5a4fdfe59e20870 (patch) | |
tree | 71d6fd0bce133f04d7bcc9acbb8da32c6cc4f4a4 /fs/cramfs | |
parent | be5f9a77f8bc83a3f93d26a50acc047d2bbee908 (diff) |
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>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'fs/cramfs')
-rw-r--r-- | fs/cramfs/cramfs.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/cramfs/cramfs.c b/fs/cramfs/cramfs.c index 6c017cebc50..abb2de34eb0 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; } |