Skip to content

Commit 236bb00

Browse files
authored
Merge pull request #113 from florent-lamiraux/devel
[Entity] Increase max size of signal name.
2 parents 66162cb + 9d8ba7f commit 236bb00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dgraph/entity.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ void Entity::signalRegistration(const SignalArray<int> &signals) {
6161
SignalBase<int> &sig = signals[i];
6262
// const string& signame = sig.getName ();
6363
istringstream iss(sig.getName());
64-
const int SIZE = 128;
64+
const int SIZE = 4096;
6565
char buffer[SIZE];
6666
while (iss.good()) {
6767
iss.getline(buffer, SIZE, ':');

0 commit comments

Comments
 (0)