Skip to content

Commit

Permalink
remove fixme, open issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pd0wm committed May 11, 2024
1 parent f200038 commit a1bf702
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/socketcan/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ impl CanAdapter for SocketCan {
while let Some(frame) = frames.pop_front() {
if self.socket.write_frame(frame.clone()).is_err() {
// Failed to send frame, push it back to the front of the queue for next send call
// FIXME: Ensure we don't processes the frame the same call
frames.push_front(frame);
break;
} else if !self.iff_echo {
Expand Down

0 comments on commit a1bf702

Please sign in to comment.