Changeset 27800 in vbox for trunk/src/VBox/Runtime/common/misc
- Timestamp:
- Mar 29, 2010 7:56:26 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 59459
- Location:
- trunk/src/VBox/Runtime/common/misc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/getopt.cpp
r26694 r27800 460 460 * Make sure the union is completely cleared out, whatever happens below. 461 461 */ 462 pValueUnion->u64 = 0;462 pValueUnion->u64.value = 0; 463 463 pValueUnion->pDef = NULL; 464 464 … … 730 730 * Make sure the union is completely cleared out, whatever happens below. 731 731 */ 732 pValueUnion->u64 = 0;732 pValueUnion->u64.value = 0; 733 733 pValueUnion->pDef = NULL; 734 734 -
trunk/src/VBox/Runtime/common/misc/req.cpp
r26562 r27800 821 821 } u; 822 822 u.pfn = pReq->u.Internal.pfn; 823 #if def RT_ARCH_AMD64823 #ifndef RT_ARCH_X86 824 824 switch (pReq->u.Internal.cArgs) 825 825 { … … 842 842 break; 843 843 } 844 #else /* x86:*/844 #else /* RT_ARCH_X86 */ 845 845 size_t cbArgs = pReq->u.Internal.cArgs * sizeof(uintptr_t); 846 846 # ifdef __GNUC__ … … 879 879 } 880 880 # endif 881 #endif /* x86 */881 #endif /* RT_ARCH_X86 */ 882 882 if ((pReq->fFlags & (RTREQFLAGS_RETURN_MASK)) == RTREQFLAGS_VOID) 883 883 rcRet = VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.