Skip to content

Commit

Permalink
Merge pull request nasa#510 from jphickey/fix-509-no-uintmax_t
Browse files Browse the repository at this point in the history
Fix nasa#509, Remove uintmax_t usage
  • Loading branch information
astrogeco authored Jun 17, 2020
2 parents 3cc506c + 3d26418 commit e561cc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ut_assert/src/utstubs.c
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ const void* UT_Hook_GetArgPtr(const UT_StubContext_t *ContextPtr, const char *Na

static const union
{
uintmax_t AsInt;
unsigned long AsInt;
void *AsPtr;
double AsFloat;
} ARG_DEFAULT_ZERO_VALUE = { 0 };
Expand Down

0 comments on commit e561cc7

Please sign in to comment.