summaryrefslogtreecommitdiffstats
path: root/Source/CursesDialog/ccmake.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2002-06-18 21:20:07 (GMT)
committerBrad King <brad.king@kitware.com>2002-06-18 21:20:07 (GMT)
commit55f3a3817e2879ad988df4473490823f803025d6 (patch)
treed328d0b6a652295ec698d9ad7dde0d1c0ad215f3 /Source/CursesDialog/ccmake.cxx
parent05e162f00ad198d65aa83be1e5ea1d07b0838563 (diff)
downloadCMake-55f3a3817e2879ad988df4473490823f803025d6.zip
CMake-55f3a3817e2879ad988df4473490823f803025d6.tar.gz
CMake-55f3a3817e2879ad988df4473490823f803025d6.tar.bz2
ERR: Fixed compiler warnings about unused parameters.
Diffstat (limited to 'Source/CursesDialog/ccmake.cxx')
-rw-r--r--Source/CursesDialog/ccmake.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CursesDialog/ccmake.cxx b/Source/CursesDialog/ccmake.cxx
index 330bf0e..8c9a3c3 100644
--- a/Source/CursesDialog/ccmake.cxx
+++ b/Source/CursesDialog/ccmake.cxx
@@ -31,7 +31,7 @@ cmCursesForm* cmCursesForm::CurrentForm=0;
extern "C"
{
-void onsig(int sig)
+void onsig(int)
{
if (cmCursesForm::CurrentForm)
{
@@ -52,7 +52,7 @@ void onsig(int sig)
}
-void CMakeErrorHandler(const char* message, const char* title, bool& disable)
+void CMakeErrorHandler(const char* message, const char* title, bool&)
{
cmCursesForm::CurrentForm->AddError(message, title);
}