Skip to content

Commit

Permalink
Add missing NULL parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
eschan145 committed Nov 3, 2024
1 parent c68c4fe commit dfc8740
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ void close_application_by_exe(const char* exe_name)
void monitor_executables(const char* folder_path)
{
if (exists(FOLDER_PATH)) {
MessageBox(NULL, "Folder exists!", "Notification");
MessageBox(NULL, "Folder exists!", "Notification", NULL);
} else {
MessageBox(NULL, "Folder does not exist.", "Notification");
MessageBox(NULL, "Folder does not exist.", "Notification", NULL);
}
while (running)
{
Expand Down

0 comments on commit dfc8740

Please sign in to comment.