Fix spelling "Couldnt" -> "Couldn't"

This commit is contained in:
Travis Cross 2014-08-22 02:19:45 +00:00
parent decc19ccd1
commit 959e672a94
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ static void release_backend(switch_limit_interface_t *limit) {
SWITCH_DECLARE(void) switch_limit_init(switch_memory_pool_t *pool) {
if (switch_event_reserve_subclass(LIMIT_EVENT_USAGE) != SWITCH_STATUS_SUCCESS) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Couldnt register event subclass \"%s\"", LIMIT_EVENT_USAGE);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Couldn't register event subclass \"%s\"", LIMIT_EVENT_USAGE);
}
}

View File

@ -1376,7 +1376,7 @@ static int preprocess(const char *cwd, const char *file, FILE *write_fd, int rle
if (!(read_fd = fopen(file, "r"))) {
const char *reason = strerror(errno);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Couldnt open %s (%s)\n", file, reason);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Couldn't open %s (%s)\n", file, reason);
return -1;
}