Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
eschan145 committed Jan 22, 2025
1 parent e69f1e1 commit c2b710c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ DK_API uint64_t dyknow_size(const std::string& directory) {

if (data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
// If it's a directory, recursively calculate its size
total += get_dyknow_size(full_path);
total += dyknow_size(full_path);
} else {
LARGE_INTEGER file_size;

Expand Down

0 comments on commit c2b710c

Please sign in to comment.