[CRIU] [PATCH] image: Add missing newlines to warn message

Andrey Vagin avagin at virtuozzo.com
Thu Jun 14 20:52:01 MSK 2018


Applied, thanks!

On Thu, Jun 07, 2018 at 04:31:22PM +0300, Cyrill Gorcunov wrote:
> Signed-off-by: Cyrill Gorcunov <gorcunov at gmail.com>
> ---
>  criu/image.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/criu/image.c b/criu/image.c
> index 108471b36b8f..e28841ffa936 100644
> --- a/criu/image.c
> +++ b/criu/image.c
> @@ -137,26 +137,26 @@ InventoryEntry *get_parent_inventory(void)
>  
>  	dir = openat(get_service_fd(IMG_FD_OFF), CR_PARENT_LINK, O_RDONLY);
>  	if (dir == -1) {
> -		pr_warn("Failed to open parent directory");
> +		pr_warn("Failed to open parent directory\n");
>  		return NULL;
>  	}
>  
>  	img = open_image_at(dir, CR_FD_INVENTORY, O_RSTR);
>  	if (!img) {
> -		pr_warn("Failed to open parent pre-dump inventory image");
> +		pr_warn("Failed to open parent pre-dump inventory image\n");
>  		close(dir);
>  		return NULL;
>  	}
>  
>  	if (pb_read_one(img, &ie, PB_INVENTORY) < 0) {
> -		pr_warn("Failed to read parent pre-dump inventory entry");
> +		pr_warn("Failed to read parent pre-dump inventory entry\n");
>  		close_image(img);
>  		close(dir);
>  		return NULL;
>  	}
>  
>  	if (!ie->has_dump_uptime) {
> -		pr_warn("Parent pre-dump inventory has no uptime");
> +		pr_warn("Parent pre-dump inventory has no uptime\n");
>  		inventory_entry__free_unpacked(ie, NULL);
>  		ie = NULL;
>  	}
> -- 
> 2.14.4
> 


More information about the CRIU mailing list