* Removed all Id tags.
[cacao.git] / src / toolbox / logging.c
index 5a86a4fa7a27242ebb028f8d87464b99f803e6b5..de04b1e573aee75d7623e6fe8254701a5b1c4cb8 100644 (file)
@@ -22,8 +22,6 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   $Id: logging.c 7345 2007-02-13 13:04:21Z twisti $
-
 */
 
 
@@ -172,11 +170,11 @@ void log_println(const char *text, ...)
 void log_finish(void)
 {
        if (logfile) {
+               fputs("\n", logfile);
                fflush(logfile);
-
-       else {
+       }
+       else {
                fputs("\n", stdout);
-
                fflush(stdout);
        }
 }