- Timestamp:
 - Jan 25, 2000, 10:00:39 PM (26 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/src/kernel32/misc.cpp (modified) (3 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/src/kernel32/misc.cpp
r2485 r2516 1 /* $Id: misc.cpp,v 1.1 8 2000-01-20 21:40:26sandervl Exp $ */1 /* $Id: misc.cpp,v 1.19 2000-01-25 21:00:39 sandervl Exp $ */ 2 2 3 3 /* … … 278 278 279 279 va_start(argptr, tekst); 280 if(thdb) thdb->logfile = (DWORD)flog; 280 if(thdb) { 281 thdb->logfile = (DWORD)flog; 282 fprintf(flog, "t%d: ", thdb->threadId); 283 } 281 284 vfprintf(flog, tekst, argptr); 282 285 if(thdb) thdb->logfile = 0; … … 313 316 314 317 va_start(argptr, tekst); 315 if(thdb) thdb->logfile = (DWORD)logfile; 318 if(thdb) { 319 thdb->logfile = (DWORD)flog; 320 fprintf(flog, "t%d", thdb->threadId); 321 } 316 322 vfprintf((FILE *)logfile, tekst, argptr); 317 323 if(thdb) thdb->logfile = 0;  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  