fix stupid c89 for windows

This commit is contained in:
Jeff Lenk 2013-07-04 12:28:35 -05:00
parent e0210d75e3
commit 2908e3acd5
1 changed files with 2 additions and 1 deletions

View File

@ -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;