From e8237dea5d09bdcf8cdf8b0f06de7993abbfb27e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Fri, 1 Feb 2008 01:49:16 +0000 Subject: [PATCH] Added the missing end-of-line character when outputting DEBUG_SEARCH debug messages from file_build1(). This cleans up the -d+6 bjam output a lot. [SVN r43046] --- src/engine/filesys.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/engine/filesys.c b/src/engine/filesys.c index 3fbea962f..6f0619667 100644 --- a/src/engine/filesys.c +++ b/src/engine/filesys.c @@ -19,6 +19,7 @@ file_build1( printf( "dir = '%.*s' ", f->f_dir.len, f->f_dir.ptr ); if( f->f_base.len ) printf( "base = '%.*s' ", f->f_base.len, f->f_base.ptr ); + printf( "\n" ); } /* Start with the grist. If the current grist isn't */