Skip to content

Commit 17976ef

Browse files
authored
fix(driver): user_data does not exist (#643)
1 parent 3016ec7 commit 17976ef

File tree

1 file changed

+1
-1
lines changed
  • compio-driver/src/sys/poll

1 file changed

+1
-1
lines changed

compio-driver/src/sys/poll/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ impl Driver {
634634
// because we only use AIO on FreeBSD), we'd better ignore the current
635635
// one and wait for the real event.
636636
libc::EINPROGRESS => {
637-
trace!("op {} is not completed", user_data);
637+
trace!("op {} is not completed", key.as_raw());
638638
continue;
639639
}
640640
libc::ECANCELED => {

0 commit comments

Comments
 (0)