Skip to content

Commit

Permalink
Resolving CI build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanAlling-DojoFive committed Jan 20, 2024
1 parent 9174652 commit 10db94f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions srecord/arglex.cc
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,10 @@ srecord::arglex::compare(const char *formal, const char *actual)
{
for (;;)
{
uint8_t ac = *actual++;
std::uint8_t ac = *actual++;
if (isupper(ac))
ac = tolower(ac);
uint8_t fc = *formal++;
std::uint8_t fc = *formal++;
switch (fc)
{
case 0:
Expand Down
2 changes: 1 addition & 1 deletion srecord/arglex/abbreviate.cc
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ srecord::arglex::abbreviate(const char *s)
std::string result;
for (;;)
{
uint8_t c = *s++;
std::uint8_t c = *s++;
switch (c)
{
case '\0':
Expand Down

0 comments on commit 10db94f

Please sign in to comment.