Skip to content
Snippets Groups Projects
Commit bb7a77b4 authored by Aaron Cuevas Lopez's avatar Aaron Cuevas Lopez
Browse files

Fix crash on 32bit windows build

parent e919ea40
Branches
Tags
No related merge requests found
......@@ -116,7 +116,7 @@ void KWIKFileSource::fillRecordInfo()
for (int i=0; i < dims[1]; i++)
{
RecordedChannelInfo c;
c.name = "CH" + i;
c.name = "CH" + String(i);
c.bitVolts = bitVoltArray[i];
info.channels.add(c);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment