Skip to content

Commit

Permalink
Corrected comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lastique committed Oct 3, 2024
1 parent bf29b81 commit cf92e38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/directory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ int readdir_select_impl(dir_itr_imp& imp, struct dirent** result);

typedef int readdir_impl_t(dir_itr_imp& imp, struct dirent** result);

//! Pointer to the actual implementation of the copy_file_data implementation
//! Pointer to the actual implementation of readdir
readdir_impl_t* readdir_impl_ptr = &readdir_select_impl;

void init_readdir_impl()
Expand Down
2 changes: 1 addition & 1 deletion src/operations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ int copy_file_data_read_write(int infile, int outfile, uintmax_t size, std::size

typedef int copy_file_data_t(int infile, int outfile, uintmax_t size, std::size_t blksize);

//! Pointer to the actual implementation of the copy_file_data implementation
//! Pointer to the actual implementation of copy_file_data
copy_file_data_t* copy_file_data = &copy_file_data_read_write;

#if defined(BOOST_FILESYSTEM_USE_SENDFILE) || defined(BOOST_FILESYSTEM_USE_COPY_FILE_RANGE)
Expand Down

0 comments on commit cf92e38

Please sign in to comment.