comparison th_config.c @ 201:f7b571debd81

Silence a warning when compiling with older versions of GCC.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 20 Nov 2010 12:14:34 +0200
parents c6c3825376c9
children 659b8229d015
comparison
equal deleted inserted replaced
200:ec1ffa2043ec 201:f7b571debd81
560 /* Boolean parsing mode */ 560 /* Boolean parsing mode */
561 if (isStart) { 561 if (isStart) {
562 tmpCh = c; 562 tmpCh = c;
563 isStart = FALSE; 563 isStart = FALSE;
564 } else if (VISEND(c)) { 564 } else if (VISEND(c)) {
565 BOOL tmpBool; 565 BOOL tmpBool = FALSE;
566 566
567 /* End of boolean parsing */ 567 /* End of boolean parsing */
568 switch (tmpCh) { 568 switch (tmpCh) {
569 case 'Y': case 'y': 569 case 'Y': case 'y':
570 case 'T': case 't': 570 case 'T': case 't':