FS-10601: [freeswitch-core] accomodate should be accommodate #resolve

This commit is contained in:
Anthony Minessale 2017-08-21 17:09:24 -05:00
parent 10dfc93cdf
commit aef2487077
3 changed files with 3 additions and 3 deletions

View File

@ -2834,7 +2834,7 @@ void conference_video_check_auto_bitrate(conference_member_t *member, mcu_layer_
switch_channel_get_name(member->channel), kps);
} else {
if (layer && conference_utils_member_test_flag(member, MFLAG_CAN_BE_SEEN)) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG1, "%s auto-setting bitrate to %dkps to accomodate %dx%d resolution\n",
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG1, "%s auto-setting bitrate to %dkps to accommodate %dx%d resolution\n",
switch_channel_get_name(member->channel), kps, layer->screen_w, layer->screen_h);
} else {
kps = min;

View File

@ -372,7 +372,7 @@ static switch_status_t my_on_reporting(switch_core_session_t *session)
}
}
/* Resize values buffer to accomodate next var */
/* Resize values buffer to accommodate next var */
len = strlen(pq_var);
tmp = realloc(values, offset + len);
values = tmp;

View File

@ -93,7 +93,7 @@ switch_create_hashtable(switch_hashtable_t **hp, unsigned int minsize,
static int
hashtable_expand(switch_hashtable_t *h)
{
/* Double the size of the table to accomodate more entries */
/* Double the size of the table to accommodate more entries */
struct entry **newtable;
struct entry *e;
struct entry **pE;