Ignore:
Timestamp:
Feb 14, 2000, 6:36:19 PM (26 years ago)
Author:
bird
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/database/StateUpd.cpp

    r2780 r2783  
    1 /* $Id: StateUpd.cpp,v 1.16 2000-02-14 17:29:25 bird Exp $
     1/* $Id: StateUpd.cpp,v 1.17 2000-02-14 17:36:19 bird Exp $
    22 *
    33 * StateUpd - Scans source files for API functions and imports data on them.
     
    290290
    291291        /* write status to log */
    292         if (options.fIntegrityOnly)
     292        if (!options.fIntegrityOnly)
    293293        {
    294294            ul2 = dbGetNumberOfUpdatedFunction(options.lDllRefcode);
     
    317317
    318318        /* warn if error during processing. */
    319         if (options.fIntegrityOnly)
     319        if (!options.fIntegrityOnly)
    320320        {
    321321            fprintf(stdout,"Number of function in this DLL:        %4ld (%ld)\n", ul1, ul0);
     
    931931        {
    932932            /* FIXME LATER! Some constructors calling baseclass constructors "breaks" this rule. Win32MDIChildWindow in /src/user32/win32wmdichild.cpp for example. */
    933             fprintf(phSignal,"Fatal error? return statement is too larget. len=%d", strlen(pszEnd));
    934             fprintf(phLog,   "Fatal error? return statement is too larget. len=%d", strlen(pszEnd));
     933            fprintf(phSignal,"Fatal error? return statement is too larget. len=%d\n", strlen(pszEnd));
     934            fprintf(phLog,   "Fatal error? return statement is too larget. len=%d\n", strlen(pszEnd));
    935935            if (strlen(pszEnd) > 512)
    936                 fprintf(stderr,  "Fatal error? return statement is too larget. len=%d", strlen(pszEnd));
     936                fprintf(stderr,  "Fatal error? return statement is too larget. len=%d\n", strlen(pszEnd));
    937937            fflush(phLog);
    938938            fflush(phSignal);
Note: See TracChangeset for help on using the changeset viewer.