Changeset 108332 in vbox
- Timestamp:
- Feb 21, 2025 3:04:09 PM (3 weeks ago)
- svn:sync-xref-src-repo-rev:
- 167684
- Location:
- trunk/src/libs/xpcom18a4/xpcom/typelib/xpidl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/typelib/xpidl/xpidl_idl.c
r108329 r108332 25 25 * SPDX-License-Identifier: GPL-3.0-only 26 26 */ 27 #include <iprt/cdefs.h> 27 28 #include <iprt/errcore.h> 28 29 #include <iprt/file.h> -
trunk/src/libs/xpcom18a4/xpcom/typelib/xpidl/xpidl_util.c
r108326 r108332 791 791 DECLHIDDEN(PCXPIDLATTR) xpidlNodeAttrFind(PCXPIDLNODE pNd, const char *pszAttr) 792 792 { 793 for (uint32_t i = 0; i < pNd->cAttrs; i++) 793 uint32_t i; 794 for (i = 0; i < pNd->cAttrs; i++) 794 795 { 795 796 if (!strcmp(pNd->aAttrs[i].pszName, pszAttr))
Note:
See TracChangeset
for help on using the changeset viewer.