From f357e322ff7b14454da144ac140f5972eaba6dc5 Mon Sep 17 00:00:00 2001 From: Didi Hoffmann <39629+ribalba@users.noreply.github.com> Date: Mon, 27 Apr 2026 18:30:55 +0200 Subject: [PATCH] Change success message from 'started' to 'stopped' --- DriverLoader/DriverLoader.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DriverLoader/DriverLoader.cpp b/DriverLoader/DriverLoader.cpp index 62346b7..531aea1 100644 --- a/DriverLoader/DriverLoader.cpp +++ b/DriverLoader/DriverLoader.cpp @@ -77,7 +77,7 @@ int main(int argc, char **argv) ExitProcess(ERROR_SERVICE_STOP_FAILED); } - cout << SERVICE_DESC << " started successfully!" << endl; + cout << SERVICE_DESC << " stopped successfully!" << endl; } else if (strcmp(argv[1], "remove") == 0) { @@ -191,4 +191,4 @@ void _doInstall(void) } ExitProcess(ERROR_SERVICE_OK); -} \ No newline at end of file +}