]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Add missing newlines to cc_logs
authorJoel Rosdahl <joel@rosdahl.net>
Mon, 22 Feb 2010 20:27:31 +0000 (21:27 +0100)
committerJoel Rosdahl <joel@rosdahl.net>
Mon, 22 Feb 2010 20:27:31 +0000 (21:27 +0100)
ccache.c

index 017bef633ce81663e738a7cd34707e7d560ced81..9ddef87cc223be94b319d33822a38c2fd2855e56 100644 (file)
--- 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();
        }