Skip to content

Commit 094dd94

Browse files
committed
[config] Fix LinkStatus mix-up
1 parent 8519a29 commit 094dd94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Cru/Gbt.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ LinkStatus Gbt::getStickyBit(Link link)
247247
return (lockedData == 0x1 && ready == 0x1) ? LinkStatus::UpWasDown : LinkStatus::Down;
248248
}
249249

250-
return (lockedData == 0x1 && ready == 0x1) ? LinkStatus::Up : LinkStatus::UpWasDown;
250+
return (lockedData == 0x1 && ready == 0x1) ? LinkStatus::Up : LinkStatus::Down;
251251
}
252252

253253
void Gbt::resetStickyBit(Link link)

0 commit comments

Comments
 (0)