From a1b1ab9672389009d8c035dd5c6c902f58e47c93 Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Sun, 30 Apr 2023 07:09:15 -0700 Subject: [PATCH] Mac: fix a compiler warning (unused variable) --- clientscr/screensaver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clientscr/screensaver.cpp b/clientscr/screensaver.cpp index 8b9676769d..547d8f75d3 100644 --- a/clientscr/screensaver.cpp +++ b/clientscr/screensaver.cpp @@ -348,7 +348,7 @@ int CScreensaver::terminate_v6_screensaver(PROCESS_REF graphics_application) { thePID = graphics_application; // fprintf(stderr, "stopping pid %d\n", thePID); - int retval = rpc->run_graphics_app("stop", thePID, gUserName); + rpc->run_graphics_app("stop", thePID, gUserName); // Inform our helper app that we have stopped current graphics app fprintf(m_gfx_Cleanup_IPC, "0\n");