Changeset 23138 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Sep 18, 2009 2:54:52 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/main.cpp
r23132 r23138 168 168 { 169 169 /* Check for Snow Leopard or higher */ 170 char pszInfo[64];171 int rc = RTSystemQueryOSInfo (RTSYSOSINFO_RELEASE, pszInfo, sizeof(pszInfo));170 char szInfo[64]; 171 int rc = RTSystemQueryOSInfo (RTSYSOSINFO_RELEASE, szInfo, sizeof(szInfo)); 172 172 if (RT_SUCCESS (rc) && 173 pszInfo[0] == '1') /* higher than 1x.x.x */173 szInfo[0] == '1') /* higher than 1x.x.x */ 174 174 { 175 175 /*
Note:
See TracChangeset
for help on using the changeset viewer.