mirror of
https://github.com/kdave/btrfs-progs
synced 2025-02-16 09:46:55 +00:00
btrfs-progs: convert: add missing newlines for printfs
There are two printfs with missing newlines that end up making the output wonky. Signed-off-by: Jeff Mahoney <jeffm@suse.com> Reviewed-by: Qu Wenruo <quwenruo.btrfs@gmx.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
7708377075
commit
10726f7423
@ -1289,7 +1289,7 @@ static int do_convert(const char *devname, u32 convert_flags, u32 nodesize,
|
||||
goto fail;
|
||||
}
|
||||
|
||||
printf("creating btrfs metadata");
|
||||
printf("creating btrfs metadata\n");
|
||||
ret = pthread_mutex_init(&ctx.mutex, NULL);
|
||||
if (ret) {
|
||||
error("failed to initialize mutex: %d", ret);
|
||||
@ -1357,7 +1357,7 @@ static int do_convert(const char *devname, u32 convert_flags, u32 nodesize,
|
||||
close_ctree(root);
|
||||
close(fd);
|
||||
|
||||
printf("conversion complete");
|
||||
printf("conversion complete\n");
|
||||
return 0;
|
||||
fail:
|
||||
clean_convert_context(&cctx);
|
||||
|
Loading…
Reference in New Issue
Block a user