From b15808caffd9d32caf75ac892a7b149ff3486ab8 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 19 Jun 2002 08:57:14 -0400 Subject: ERR: Fixed unused parameter warning. --- Source/CursesDialog/form/fty_alpha.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/CursesDialog/form/fty_alpha.c b/Source/CursesDialog/form/fty_alpha.c index 8f41de1..e4e9ceb 100644 --- a/Source/CursesDialog/form/fty_alpha.c +++ b/Source/CursesDialog/form/fty_alpha.c @@ -116,6 +116,7 @@ static bool Check_Alpha_Field(FIELD * field, const void * argp) +--------------------------------------------------------------------------*/ static bool Check_Alpha_Character(int c, const void * argp) { + argp=0; /* Silence unused parameter warning. */ return (isalpha(c) ? TRUE : FALSE); } -- cgit v0.12