Changeset 53574 in vbox for trunk/src/VBox
- Timestamp:
- Dec 19, 2014 10:58:54 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CFGM.cpp
r53437 r53574 901 901 NULL)) 902 902 { 903 AssertLogRelMsgFailed(("%s/%u: Value '%s /%s' didn't match '%s'\n",903 AssertLogRelMsgFailed(("%s/%u: Value '%s%s' didn't match '%s'\n", 904 904 pszWho, uInstance, pszNode, pLeaf->szName, pszValidValues)); 905 905 return VMSetError(pNode->pVM, VERR_CFGM_CONFIG_UNKNOWN_VALUE, RT_SRC_POS, 906 N_("Unknown configuration value '%s /%s' found in the configuration of %s instance #%u"),906 N_("Unknown configuration value '%s%s' found in the configuration of %s instance #%u"), 907 907 pszNode, pLeaf->szName, pszWho, uInstance); 908 908 } … … 919 919 NULL)) 920 920 { 921 AssertLogRelMsgFailed(("%s/%u: Node '%s /%s' didn't match '%s'\n",921 AssertLogRelMsgFailed(("%s/%u: Node '%s%s' didn't match '%s'\n", 922 922 pszWho, uInstance, pszNode, pChild->szName, pszValidNodes)); 923 923 return VMSetError(pNode->pVM, VERR_CFGM_CONFIG_UNKNOWN_NODE, RT_SRC_POS, 924 N_("Unknown configuration node '%s /%s' found in the configuration of %s instance #%u"),924 N_("Unknown configuration node '%s%s' found in the configuration of %s instance #%u"), 925 925 pszNode, pChild->szName, pszWho, uInstance); 926 926 }
Note:
See TracChangeset
for help on using the changeset viewer.