- Timestamp:
- Oct 23, 2009 9:29:25 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 53860
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
r23598 r24018 662 662 for (unsigned j = 0; j < RT_ELEMENTS(g_aNetDevs[i].Mac.au8); j++) 663 663 { 664 char c1 = toupper(*pszMac++) - '0';664 char c1 = RT_C_TO_UPPER(*pszMac++) - '0'; 665 665 if (c1 > 9) 666 666 c1 -= 7; 667 char c2 = toupper(*pszMac++) - '0';667 char c2 = RT_C_TO_UPPER(*pszMac++) - '0'; 668 668 if (c2 > 9) 669 669 c2 -= 7;
Note:
See TracChangeset
for help on using the changeset viewer.