Changeset 104489 in vbox for trunk/src/libs/xpcom18a4/xpcom
- Timestamp:
- May 2, 2024 4:35:17 PM (9 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/typelib/xpt/src/xpt_struct.c
r104485 r104489 941 941 XPT_ParseVersionString(const char* str, PRUint8* major, PRUint8* minor) 942 942 { 943 for (uint32_t i = 0; i < RT_ELEMENTS(versions); i++) { 943 uint32_t i; 944 for (i = 0; i < RT_ELEMENTS(versions); i++) { 944 945 if (!strcmp(versions[i].str, str)) { 945 946 *major = versions[i].major;
Note:
See TracChangeset
for help on using the changeset viewer.