fix to conform to updarted oom lib

This commit is contained in:
Harvey Fong 2026-01-04 22:36:53 -07:00
parent 7d1bcdb327
commit 6e582220a4
2 changed files with 2 additions and 1 deletions

View File

View File

@ -12,6 +12,7 @@
#include "../oom/oom_file.h" // common misc code #include "../oom/oom_file.h" // common misc code
#include "../oom/oom_bella_long.h" // common misc code #include "../oom/oom_bella_long.h" // common misc code
#include "../oom/oom_bella_engine.h" // common misc code #include "../oom/oom_bella_engine.h" // common misc code
#include "../oom/oom_bella_misc.h" // Logging functionality
//============================================================================== //==============================================================================
// GLOBAL VARIABLES AND FUNCTIONS // GLOBAL VARIABLES AND FUNCTIONS
@ -99,7 +100,7 @@ int DL_main(dl::Args& args) {
// Check if we have files to delete // Check if we have files to delete
while (oomWatcher.getNextFileToDelete(filePath)) { while (oomWatcher.getNextFileToDelete(filePath)) {
dl::logInfo("Processing deletion: %s", filePath.string()); dl::logInfo("Processing deletion: %s", filePath.string().c_str());
// Handle file deletion // Handle file deletion
// Add your deletion logic here // Add your deletion logic here
} }