Changeset 2629 in vbox for trunk/src/VBox/Runtime/generic
- Timestamp:
- May 14, 2007 2:26:50 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 21147
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/RTTimeLocalExplode-generic.cpp
r2617 r2629 29 29 RTDECL(PRTTIME) RTTimeLocalExplode(PRTTIME pTime, PCRTTIMESPEC pTimeSpec) 30 30 { 31 return RTTimeExplode(pTime, pTimeSpec); 31 pTime = RTTimeExplode(pTime, pTimeSpec); 32 if (pTime) 33 pTime->fFlags = (pTime->fFlags & ~RTTIME_FLAGS_TYPE_MASK) | RTTIME_FLAGS_TYPE_LOCAL; 34 return pTime; 32 35 } 33 36
Note:
See TracChangeset
for help on using the changeset viewer.