Skip to content

Commit

Permalink
Merge pull request #1855 from jphickey/fix-1852-syslog-msg
Browse files Browse the repository at this point in the history
Fix #1852, correct syslog message in pool create
  • Loading branch information
astrogeco committed Aug 20, 2021
2 parents dd32187 + 5bcc8fb commit d5f6670
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/es/fsw/src/cfe_es_mempool.c
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ CFE_Status_t CFE_ES_PoolCreateEx(CFE_ES_MemHandle_t *PoolID, void *MemPtr, size_

if (PoolRecPtr == NULL)
{
CFE_ES_SysLogWrite_Unsync("%s: No free MemPoolrary slots available\n", __func__);
CFE_ES_SysLogWrite_Unsync("%s: No free MemPool slots available\n", __func__);
Status = CFE_ES_NO_RESOURCE_IDS_AVAILABLE;
}
else
Expand Down

0 comments on commit d5f6670

Please sign in to comment.