From 1a1c006982b1c4608f5b3672dd9cb75624fd2334 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Fri, 18 Dec 2020 00:21:07 +0100 Subject: [PATCH] Fix extra newline in verbose tix-install with a collection. --- tix/tix-install.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tix/tix-install.c b/tix/tix-install.c index f70fe4d9..b122a17f 100644 --- a/tix/tix-install.c +++ b/tix/tix-install.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, 2015, 2016 Jonas 'Sortie' Termansen. + * Copyright (c) 2013, 2015, 2016, 2017, 2020 Jonas 'Sortie' Termansen. * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -308,7 +308,7 @@ void InstallPackage(const char* tix_path) { printf("Installing %s", package_name); if ( strcmp(collection, "/") != 0 ) - printf(" into `%s'\n", collection); + printf(" into `%s'", collection); printf("...\n"); }