Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integration Candidate: 2020-11-03 #991

Merged
merged 14 commits into from
Nov 4, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fsw/cfe-core/src/sb/cfe_sb_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,7 @@ int32 CFE_SB_SubscribeFull(CFE_SB_MsgId_t MsgId,
{
CFE_EVS_SendEventWithAppID(CFE_SB_HASHCOLLISION_EID, CFE_EVS_EventType_DEBUG, CFE_SB.AppId,
"Msg hash collision: MsgId = 0x%x, collisions = %u",
(unsigned int)CFE_SB_MsgIdToValue(MsgId), Collisions);
(unsigned int)CFE_SB_MsgIdToValue(MsgId), (unsigned int)Collisions);
}

return CFE_SUCCESS;
Expand Down
2 changes: 1 addition & 1 deletion modules/sbr/unit-test-coverage/test_cfe_sbr_map_direct.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ void Test_SBR_Map_Direct(void)
count++;
}
}
UtPrintf("Valid route id's encountered in performance loop: %u", count);
UtPrintf("Valid route id's encountered in performance loop: %u", (unsigned int)count);
}

/* Main unit test routine */
Expand Down
2 changes: 1 addition & 1 deletion modules/sbr/unit-test-coverage/test_cfe_sbr_map_hash.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ void Test_SBR_Map_Hash(void)
count++;
}
}
UtPrintf("Valid route id's encountered in performance loop: %u", count);
UtPrintf("Valid route id's encountered in performance loop: %u", (unsigned int)count);
}

/* Main unit test routine */
Expand Down