Skip to content

Commit

Permalink
HOTFIX #437, Additional type fix for RTEMS 4
Browse files Browse the repository at this point in the history
  • Loading branch information
jphickey committed Sep 19, 2024
1 parent fe8a776 commit b42fc7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fsw/modules/eeprom_mmap_file/cfe_psp_eeprom_mmap_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ void eeprom_mmap_file_Init(uint32 PspModuleId)
Status = CFE_PSP_MemRangeSet(1, CFE_PSP_MEM_EEPROM, eeprom_address, eeprom_size, CFE_PSP_MEM_SIZE_DWORD,
CFE_PSP_MEM_ATTR_READWRITE);
OS_printf("CFE_PSP: EEPROM Range (2) created: Start Address = %08lX, Size = %08X Status = %d\n",
(unsigned long)eeprom_address, (unsigned int)eeprom_size, Status);
(unsigned long)eeprom_address, (unsigned int)eeprom_size, (int)Status);
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion unit-test-coverage/ut-stubs/src/PCS_time_handlers.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ void UT_DefaultHandler_PCS_clock_gettime(void *UserObj, UT_EntryKey_t FuncKey, c
{
/* int PCS_clock_gettime(int clk_id, struct PCS_timespec *t) */
struct PCS_timespec *t = UT_Hook_GetArgValueByName(Context, "t", struct PCS_timespec *);
int32 iStatus;
int32 iStatus;

UT_Stub_GetInt32StatusCode(Context, &iStatus);

Expand Down

0 comments on commit b42fc7a

Please sign in to comment.