diff --git a/src/switch_limit.c b/src/switch_limit.c index b2e306a4b5..e6e421b091 100644 --- a/src/switch_limit.c +++ b/src/switch_limit.c @@ -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); } } diff --git a/src/switch_xml.c b/src/switch_xml.c index 8a5b76a98b..0908e5a91d 100644 --- a/src/switch_xml.c +++ b/src/switch_xml.c @@ -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; }