From fb360d9e10df8c52c3864a2dca563dc66a6007ae Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Mon, 22 Feb 2010 21:27:31 +0100 Subject: [PATCH] Add missing newlines to cc_logs --- ccache.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ccache.c b/ccache.c index 017bef633..9ddef87cc 100644 --- a/ccache.c +++ b/ccache.c @@ -547,12 +547,12 @@ static void to_cache(ARGS *args) } if (stat(tmp_obj, &st) != 0) { - cc_log("The compiler didn't produce an object file"); + cc_log("The compiler didn't produce an object file\n"); stats_update(STATS_NOOUTPUT); failed(); } if (st.st_size == 0) { - cc_log("The compiler produced an empty object file"); + cc_log("The compiler produced an empty object file\n"); stats_update(STATS_EMPTYOUTPUT); failed(); } -- 2.47.3