X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Fdemo_termcap.c;h=8c7b05b90b482276037e998c3951d9d62272785c;hp=4289de0540e3cfba1a008300646cbc4bafad9992;hb=71c0306f0824ef2b10c4c5813fb003db48f3012e;hpb=59108c98bda25ae50b3a319e2bcb7f4b9a174024 diff --git a/test/demo_termcap.c b/test/demo_termcap.c index 4289de05..8c7b05b9 100644 --- a/test/demo_termcap.c +++ b/test/demo_termcap.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 2005-2008,2009 Free Software Foundation, Inc. * + * Copyright (c) 2005-2009,2010 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * @@ -29,7 +29,7 @@ /* * Author: Thomas E. Dickey * - * $Id: demo_termcap.c,v 1.12 2009/10/10 16:01:41 tom Exp $ + * $Id: demo_termcap.c,v 1.13 2010/05/01 22:04:08 tom Exp $ * * A simple demo of the termcap interface. */ @@ -125,7 +125,7 @@ dumpit(NCURSES_CONST char *cap) } else if ((num = tgetnum(cap)) >= 0) { printf(FNAME(num), cap); printf(" %d\n", num); - } else if ((num = tgetflag(cap)) > 0) { + } else if (tgetflag(cap) > 0) { printf(FNAME(flg), cap); printf("%s\n", "true"); }