Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit 17bacca

Browse files
committed
Merge pull request #41 from krocard/fix_string+num_concat
Fix pointer arithmetic instead of concat
2 parents 8a46614 + b80adac commit 17bacca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parameter/Subsystem.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ bool CSubsystem::handleSubsystemObjectCreation(
440440
pSubsystemObjectCreator->getMaxConfigurableElementSize()) {
441441

442442
string strSizeError = "Size should not exceed " +
443-
pSubsystemObjectCreator->getMaxConfigurableElementSize();
443+
toString(pSubsystemObjectCreator->getMaxConfigurableElementSize());
444444

445445
strError = getMappingError(strKey, strSizeError, pInstanceConfigurableElement);
446446

0 commit comments

Comments
 (0)