Changeset 36399 in vbox for trunk/src/VBox/Main
- Timestamp:
- Mar 24, 2011 12:57:28 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/webservice/vboxweb.cpp
r36344 r36399 625 625 { 626 626 /* some introductory information */ 627 static RTTIMESPEC timeSpec = {0};627 static RTTIMESPEC s_TimeSpec; 628 628 char szTmp[256]; 629 629 if (enmPhase == RTLOGPHASE_BEGIN) 630 RTTimeNow(& timeSpec);631 RTTimeSpecToString(& timeSpec, szTmp, sizeof(szTmp));630 RTTimeNow(&s_TimeSpec); 631 RTTimeSpecToString(&s_TimeSpec, szTmp, sizeof(szTmp)); 632 632 633 633 switch (enmPhase) … … 760 760 } 761 761 762 #ifdef RT_OS_WINDOWS 762 #ifdef RT_OS_WINDOWS 763 763 // Required for ATL 764 764 static CComModule _Module;
Note:
See TracChangeset
for help on using the changeset viewer.