Skip to content

Commit 4eb4263

Browse files
committed
fix: set_flags always set 0
1 parent c773db5 commit 4eb4263

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compio-driver/src/iour/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ fn create_entry(cq_entry: CEntry) -> Entry {
295295
Ok(result as _)
296296
};
297297
let mut entry = Entry::new(cq_entry.user_data() as _, result);
298-
entry.set_flags(entry.flags());
298+
entry.set_flags(cq_entry.flags());
299299

300300
entry
301301
}

0 commit comments

Comments
 (0)