Changeset 1880 for trunk/dll/errutil.c


Ignore:
Timestamp:
Oct 12, 2015, 8:26:16 PM (10 years ago)
Author:
Gregg Young
Message:

Remove dead code and comments from remaining c files. #if 0 and #if NEVER were not addressed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/errutil.c

    r1840 r1880  
    8989
    9090  static ULONG ul1stMSec;
    91   // static ULONG ulLastMSec;
    9291
    9392  ULONG msec = GetMSecTimer();
     
    9594
    9695  if (!ul1stMSec) {
    97     ul1stMSec = msec;
    98     // ulLastMSec = msec;               // Avoid big delta 1st time
     96    ul1stMSec = msec;      // Avoid big delta 1st time
    9997  }
    10098
    10199  delta = msec - ul1stMSec;
    102   // ulLastMSec = msec;
    103100  fprintf(stderr, "%03lu.%03lu ", delta / 1000, delta % 1000);
    104101
Note: See TracChangeset for help on using the changeset viewer.