Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
Signed-off-by: Alyssa Wilk <[email protected]>
  • Loading branch information
alyssawilk committed Sep 14, 2023
1 parent 8c05c0f commit 60f1efe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/common/filesystem/kqueue/watcher_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ void WatcherImpl::onKqueueEvent() {
ASSERT(file != nullptr);
ASSERT(watch_fd == file->fd_);

absl::StatusOr<PathSplitResult> pathname_or_error = file_system_.splitPathFromFilename(file->file_);
absl::StatusOr<PathSplitResult> pathname_or_error =
file_system_.splitPathFromFilename(file->file_);
THROW_IF_STATUS_NOT_OK(pathname_or_error);
PathSplitResult& pathname = pathname_or_error.value();

Expand Down

0 comments on commit 60f1efe

Please sign in to comment.