Skip to content

Commit

Permalink
Merge pull request nasa#1142 from jphickey/fix-1141-fixup-debug-event
Browse files Browse the repository at this point in the history
Fix nasa#1141, pipe name unset
  • Loading branch information
astrogeco authored Feb 3, 2021
2 parents 993c9ce + a97a268 commit 7d311a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fsw/cfe-core/src/sb/cfe_sb_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -1142,9 +1142,9 @@ int32 CFE_SB_SubscribeFull(CFE_SB_MsgId_t MsgId,
{
/* If no other event pending, send a debug event indicating success */
CFE_EVS_SendEventWithAppID(CFE_SB_SUBSCRIPTION_RCVD_EID,CFE_EVS_EventType_DEBUG,CFE_SB.AppId,
"Subscription Rcvd:MsgId 0x%x on %s(%lu),app %s",
"Subscription Rcvd:MsgId 0x%x on PipeId %lu,app %s",
(unsigned int)CFE_SB_MsgIdToValue(MsgId),
PipeName,CFE_ES_ResourceID_ToInteger(PipeId),CFE_SB_GetAppTskName(TskId,FullName));
CFE_ES_ResourceID_ToInteger(PipeId),CFE_SB_GetAppTskName(TskId,FullName));
}

if (Status == CFE_SUCCESS && Scope == CFE_SB_GLOBAL)
Expand Down

0 comments on commit 7d311a7

Please sign in to comment.