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:
@@ -691,21 +691,21 @@ static void functional_message_tests(void)
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
int threaded_messages;
|
||||
int threaded_streams;
|
||||
bool threaded_messages;
|
||||
bool threaded_streams;
|
||||
int opt;
|
||||
|
||||
threaded_messages = FALSE;
|
||||
threaded_streams = FALSE;
|
||||
threaded_messages = false;
|
||||
threaded_streams = false;
|
||||
while ((opt = getopt(argc, argv, "ms")) != -1)
|
||||
{
|
||||
switch (opt)
|
||||
{
|
||||
case 'm':
|
||||
threaded_messages = TRUE;
|
||||
threaded_messages = true;
|
||||
break;
|
||||
case 's':
|
||||
threaded_streams = TRUE;
|
||||
threaded_streams = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user