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:
@@ -64,7 +64,7 @@ int main(int argc, char *argv[])
|
||||
exit(2);
|
||||
}
|
||||
|
||||
r2_mf_tx_init(&gen, FALSE);
|
||||
r2_mf_tx_init(&gen, false);
|
||||
for (digit = 0; digits[digit]; digit++)
|
||||
{
|
||||
r2_mf_tx_put(&gen, digits[digit]);
|
||||
@@ -79,7 +79,7 @@ int main(int argc, char *argv[])
|
||||
sf_writef_short(outhandle, amp, len);
|
||||
}
|
||||
|
||||
r2_mf_tx_init(&gen, TRUE);
|
||||
r2_mf_tx_init(&gen, true);
|
||||
for (digit = 0; digits[digit]; digit++)
|
||||
{
|
||||
r2_mf_tx_put(&gen, digits[digit]);
|
||||
|
Reference in New Issue
Block a user