From: Joel Rosdahl Date: Mon, 22 Feb 2010 20:27:31 +0000 (+0100) Subject: Add missing newlines to cc_logs X-Git-Tag: v3.0pre0~59 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fb360d9e10df8c52c3864a2dca563dc66a6007ae;p=thirdparty%2Fccache.git Add missing newlines to cc_logs --- 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(); }