Skip to content

Commit

Permalink
Fix #1852, correct syslog message in pool create
Browse files Browse the repository at this point in the history
Simple search and replace error
  • Loading branch information
jphickey committed Aug 19, 2021
1 parent a0c2de6 commit 5bcc8fb
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 @@ -254,7 +254,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 5bcc8fb

Please sign in to comment.