fix stupid c89 for windows

This commit is contained in:
Jeff Lenk 2013-07-04 12:27:59 -05:00
parent 60adf50f86
commit 667a8d8868
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;