Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomasdezeeuw committed Apr 14, 2024
1 parent 7bb3980 commit 7ed5678
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rt/src/fs/watch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ impl Watch {
RT: Access,
{
let fd = syscall!(inotify_init1(libc::IN_CLOEXEC))?;
// SAFETY: just create the fd, so it's valid.
// SAFETY: just created the fd, so it's valid.
let fd = unsafe { AsyncFd::from_raw_fd(fd, rt.submission_queue()) };
let watching = HashMap::new();
let buf = Vec::new();
Expand Down

0 comments on commit 7ed5678

Please sign in to comment.