Changeset 1880 for trunk/dll/errutil.c
- Timestamp:
- Oct 12, 2015, 8:26:16 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/errutil.c
r1840 r1880 89 89 90 90 static ULONG ul1stMSec; 91 // static ULONG ulLastMSec;92 91 93 92 ULONG msec = GetMSecTimer(); … … 95 94 96 95 if (!ul1stMSec) { 97 ul1stMSec = msec; 98 // ulLastMSec = msec; // Avoid big delta 1st time 96 ul1stMSec = msec; // Avoid big delta 1st time 99 97 } 100 98 101 99 delta = msec - ul1stMSec; 102 // ulLastMSec = msec;103 100 fprintf(stderr, "%03lu.%03lu ", delta / 1000, delta % 1000); 104 101
Note:
See TracChangeset
for help on using the changeset viewer.