diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-01-29 06:57:49 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-01-29 06:57:49 +0000 |
commit | af504d359ce2cf201b81f170ca74385e2f14eb6f (patch) | |
tree | 730952feb24ca3da4f8c07b6d38e38a29a1b648b /soltools | |
parent | c72221a761b08bad5cd01d96a88503617d8bf74d (diff) |
INTEGRATION: CWS hr49 (1.10.14); FILE MERGED
2008/01/15 17:56:47 hr 1.10.14.1: #i85270#: remove noisy output - the dot - per parsed file
Diffstat (limited to 'soltools')
-rw-r--r-- | soltools/javadep/javadep.c | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/soltools/javadep/javadep.c b/soltools/javadep/javadep.c index 44e78eaacd69..cda8d49e0cfe 100644 --- a/soltools/javadep/javadep.c +++ b/soltools/javadep/javadep.c @@ -4,9 +4,9 @@ * * $RCSfile: javadep.c,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: hr $ $Date: 2007-11-02 12:41:47 $ + * last change: $Author: vg $ $Date: 2008-01-29 07:57:49 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -118,7 +118,6 @@ static char cpathsep = '/'; #elif defined (WNT) static char cpathsep = '\\'; #endif -static int bnl = 0; static FILE *pfsout = NULL; static char *pout_file = NULL; @@ -660,9 +659,6 @@ err_quit(const char* fmt, ...) va_list args; char buffer[PATH_MAX]; - if ( bnl ) - printf("\n"); - va_start(args, fmt); if ( pprogname ) @@ -691,8 +687,6 @@ silent_quit() fclose(pfsout); unlink(pout_file); } - if ( bnl ) - printf("\n"); exit(0); } @@ -934,18 +928,9 @@ main(int argc, char *argv[]) if ( pfsout != stdout ) { if ( bv_flag ) printf("Processed %s ...\n", parg); - else { - printf("."); - fflush(stdout); - if ( !bnl ) - bnl++; - } } } } - if ( bnl ) - printf("\n"); - free_growable(pfilters); pfilters = NULL; |