Add missing newlines to cc_logs

This commit is contained in:
Joel Rosdahl 2010-02-22 21:27:31 +01:00
parent a441e791ff
commit fb360d9e10

View File

@ -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();
}