From 29e57b549dec5de17793495d817820c45ee3e6e2 Mon Sep 17 00:00:00 2001 From: Ethan Chan Date: Mon, 28 Oct 2024 14:06:50 -0700 Subject: [PATCH] Fix typos --- api.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api.cpp b/api.cpp index dc6767d5..03617ab5 100644 --- a/api.cpp +++ b/api.cpp @@ -75,10 +75,10 @@ void monitor_executables(const string& folder_path) if (interval_file.fail()) { - interval = 0 + interval = 0; } - this_thread::sleep_for(chrono::seconds(inrerval)); + this_thread::sleep_for(chrono::seconds(interval)); interval_file.close(); } }