diff options
author | Brad King <brad.king@kitware.com> | 2002-06-18 21:19:38 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-06-18 21:19:38 (GMT) |
commit | 05e162f00ad198d65aa83be1e5ea1d07b0838563 (patch) | |
tree | a5b0b10eab44225cca65e0449cadc69eec75fbae /Source/CursesDialog/form/fty_num.c | |
parent | 589cf38a365bd6453d93be27ee2b824cf9e6c7d6 (diff) | |
download | CMake-05e162f00ad198d65aa83be1e5ea1d07b0838563.zip CMake-05e162f00ad198d65aa83be1e5ea1d07b0838563.tar.gz CMake-05e162f00ad198d65aa83be1e5ea1d07b0838563.tar.bz2 |
ERR: Fixed compiler warnings when using strict ansi.
Diffstat (limited to 'Source/CursesDialog/form/fty_num.c')
-rw-r--r-- | Source/CursesDialog/form/fty_num.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/CursesDialog/form/fty_num.c b/Source/CursesDialog/form/fty_num.c index 4ba69e1..7809599 100644 --- a/Source/CursesDialog/form/fty_num.c +++ b/Source/CursesDialog/form/fty_num.c @@ -161,6 +161,7 @@ static bool Check_Numeric_Field(FIELD * field, const void * argp) +--------------------------------------------------------------------------*/ static bool Check_Numeric_Character(int c, const void * argp) { + argp=0; /* Silence unused parameter warning. */ return (isdigit(c) || c == '+' || c == '-' || |