Changeset 2783 for trunk/tools/database/StateUpd.cpp
- Timestamp:
- Feb 14, 2000, 6:36:19 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/database/StateUpd.cpp
r2780 r2783 1 /* $Id: StateUpd.cpp,v 1.1 6 2000-02-14 17:29:25bird Exp $1 /* $Id: StateUpd.cpp,v 1.17 2000-02-14 17:36:19 bird Exp $ 2 2 * 3 3 * StateUpd - Scans source files for API functions and imports data on them. … … 290 290 291 291 /* write status to log */ 292 if ( options.fIntegrityOnly)292 if (!options.fIntegrityOnly) 293 293 { 294 294 ul2 = dbGetNumberOfUpdatedFunction(options.lDllRefcode); … … 317 317 318 318 /* warn if error during processing. */ 319 if ( options.fIntegrityOnly)319 if (!options.fIntegrityOnly) 320 320 { 321 321 fprintf(stdout,"Number of function in this DLL: %4ld (%ld)\n", ul1, ul0); … … 931 931 { 932 932 /* 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)); 935 935 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)); 937 937 fflush(phLog); 938 938 fflush(phSignal);
Note:
See TracChangeset
for help on using the changeset viewer.