Skip to content

Commit c0abad5

Browse files
committed
Fix inner loop
1 parent 77c9cf0 commit c0abad5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/utils/hyperion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ namespace hyperion {
153153

154154
std::stringstream sStream;
155155
const QStringList ledIndexList = ledIndicesStr.split(",");
156-
for (int j=0; j<ledIndexList.size(); ++i) {
156+
for (int j=0; j<ledIndexList.size(); ++j) {
157157
if (j > 0)
158158
{
159159
sStream << ", ";

0 commit comments

Comments
 (0)