mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 09:36:46 +00:00
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:
@@ -188,7 +188,7 @@ int main(int argc, char *argv[])
|
||||
exit(2);
|
||||
}
|
||||
|
||||
add_digits = TRUE;
|
||||
add_digits = true;
|
||||
do
|
||||
{
|
||||
len = dtmf_tx(gen, amp, 160);
|
||||
@@ -200,7 +200,7 @@ int main(int argc, char *argv[])
|
||||
if (dtmf_tx_put(gen, "1234567890", -1))
|
||||
{
|
||||
printf("Digit buffer full\n");
|
||||
add_digits = FALSE;
|
||||
add_digits = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user