Changeset 62731 in vbox
- Timestamp:
- Jul 30, 2016 11:28:13 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109309
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/testcase/VDScriptInterp.cpp
r62482 r62731 163 163 static int vdScriptInterpreterError(PVDSCRIPTINTERPCTX pThis, int rc, RT_SRC_POS_DECL, const char *pszFmt, ...) 164 164 { 165 RTPrintf(pszFmt); 165 RT_NOREF1(pThis); RT_SRC_POS_NOREF(); 166 va_list va; 167 va_start(va, pszFmt); 168 RTPrintfV(pszFmt, va); 169 va_end(va); 166 170 return rc; 167 171 } … … 385 389 static DECLCALLBACK(int) vdScriptInterpreterVarSpaceDestroy(PRTSTRSPACECORE pStr, void *pvUser) 386 390 { 391 RT_NOREF1(pvUser); 387 392 RTMemFree(pStr); 388 393 return VINF_SUCCESS; … … 779 784 vdScriptInterpreterPopValue(pThis, &pVar->Value); 780 785 bool fInserted = RTStrSpaceInsert(&pFnCall->ScopeRoot.hStrSpaceVar, &pVar->Core); 781 Assert(fInserted); 786 Assert(fInserted); RT_NOREF_PV(fInserted); 782 787 } 783 788 else … … 1003 1008 PVDSCRIPTARG pRet) 1004 1009 { 1010 RT_NOREF1(pRet); 1005 1011 int rc = VINF_SUCCESS; 1006 1012 VDSCRIPTINTERPCTX InterpCtx;
Note:
See TracChangeset
for help on using the changeset viewer.