summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-11-22 14:45:50 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-11-22 14:45:50 (GMT)
commit934d7d3dd680ed755ef1fe168a8afca12a496c56 (patch)
tree1f1cb86a31e65f37a01be5e7ebe9f6eafc20a692
parent2a48ce12b19a7b31a550956e22efa74db7c20b4e (diff)
downloadCMake-934d7d3dd680ed755ef1fe168a8afca12a496c56.zip
CMake-934d7d3dd680ed755ef1fe168a8afca12a496c56.tar.gz
CMake-934d7d3dd680ed755ef1fe168a8afca12a496c56.tar.bz2
Rename local variable
-rw-r--r--Source/CursesDialog/cmCursesMainForm.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CursesDialog/cmCursesMainForm.cxx b/Source/CursesDialog/cmCursesMainForm.cxx
index 87515dc..f13d4a2 100644
--- a/Source/CursesDialog/cmCursesMainForm.cxx
+++ b/Source/CursesDialog/cmCursesMainForm.cxx
@@ -581,8 +581,8 @@ void cmCursesMainForm::UpdateStatusBar(const char* message)
// Now print both lines
curses_move(y-5,0);
attron(A_STANDOUT);
- char s[] = "%s";
- printw(s, bar);
+ char format[] = "%s";
+ printw(format, bar);
attroff(A_STANDOUT);
curses_move(y-4,0);
printw(version);