mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-13 12:40:17 +00:00
fix stupid c89 for windows
This commit is contained in:
parent
e0210d75e3
commit
2908e3acd5
@ -4557,7 +4557,8 @@ SWITCH_STANDARD_API(coalesce_function)
|
||||
}
|
||||
|
||||
if (argc > 0) {
|
||||
for (int i = 0; i < argc; i++) {
|
||||
int i;
|
||||
for (i = 0; i < argc; i++) {
|
||||
if (argv[i] && *argv[i]) {
|
||||
stream->write_function(stream, argv[i]);
|
||||
status = SWITCH_STATUS_SUCCESS;
|
||||
|
Loading…
x
Reference in New Issue
Block a user