Changeset 3477 in vbox for trunk/src/VBox/Devices/PC
- Timestamp:
- Jul 5, 2007 3:18:17 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevRTC.cpp
r3314 r3477 142 142 uint32_t cRelLogEntries; 143 143 /** The current/previous timer period. Used to prevent flooding changes. */ 144 uint32_tCurPeriod;144 int32_t CurPeriod; 145 145 }; 146 146 … … 170 170 TMTimerSet(s->CTXSUFF(pPeriodicTimer), s->next_periodic_time); 171 171 172 if ( (uint32_t)period != s->CurPeriod)172 if (period != s->CurPeriod) 173 173 { 174 174 if (s->cRelLogEntries++ < 64)
Note:
See TracChangeset
for help on using the changeset viewer.