Skip to content

Commit

Permalink
fix typos in comments
Browse files Browse the repository at this point in the history
thanks github user @spaette!

#150
  • Loading branch information
Paul Dreik committed Apr 6, 2024
1 parent a8ab653 commit 735404f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dirlist.cc
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Dirlist::walk(const std::string& dir, const int recursionlevel)
if (0 == strcmp(".", dp->d_name) || 0 == strcmp("..", dp->d_name)) {
continue;
}
// investigate what kind of file it is, dont follow any
// investigate what kind of file it is, don't follow any
// symlinks when doing this (lstat instead of stat).
struct stat info;
const int statval =
Expand Down Expand Up @@ -130,7 +130,7 @@ Dirlist::handlepossiblefile(const std::string& possiblefile, int recursionlevel)
RDDEBUG("split filename is path=" << path.c_str() << " filename="
<< filename.c_str() << std::endl);

// investigate what kind of file it is, dont follow symlink
// investigate what kind of file it is, don't follow symlink
int statval = 0;
struct stat info;
do {
Expand Down
2 changes: 1 addition & 1 deletion do_quality_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ run_with_sanitizer "-fsanitize=undefined -O3"
run_with_sanitizer "-fsanitize=address -O0"

#build and test with all flags from debian, if available. this increases
#the likelilihood rdfind will build when creating a deb package.
#the likelihood rdfind will build when creating a deb package.
ASSERT=""
run_with_debian_buildflags

Expand Down

0 comments on commit 735404f

Please sign in to comment.