From c2b710c5fdea9452508da6fb5e31d05f93371299 Mon Sep 17 00:00:00 2001 From: Ethan Chan Date: Tue, 21 Jan 2025 19:16:38 -0800 Subject: [PATCH] Fix variable name --- src/api.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api.cpp b/src/api.cpp index 83f8112..f60318b 100644 --- a/src/api.cpp +++ b/src/api.cpp @@ -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;