Changed spandsp from using TRUE and FALSE to using C99 true and false. It seems

like the quirks we used to get using those with C++ have gone away.
This commit is contained in:
Steve Underwood
2013-08-08 21:40:28 +08:00
parent bf9809c10c
commit 365fc08719
212 changed files with 3152 additions and 2664 deletions

View File

@@ -89,7 +89,7 @@ int main(int argc, char *argv[])
#endif
#if defined(ENABLE_GUI)
use_gui = FALSE;
use_gui = false;
#endif
model_no = MODEL_NO;
speed_pattern_no = SPEED_PATTERN_NO;
@@ -100,7 +100,7 @@ int main(int argc, char *argv[])
{
case 'g':
#if defined(ENABLE_GUI)
use_gui = TRUE;
use_gui = true;
#else
fprintf(stderr, "Graphical monitoring not available\n");
exit(2);