Skip to content

Commit

Permalink
Fix: IDF compilation error on print format
Browse files Browse the repository at this point in the history
  • Loading branch information
tolauwae committed Jan 4, 2023
1 parent 1c2d4b7 commit cde6b37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utils/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ StackValue *readArgs(Type function, uint8_t *data) {
break;
}
default: {
FATAL("no argument of type %" PRIu32 "\n", args[i].value_type);
FATAL("no argument of type %" SCNu8 "\n", args[i].value_type);
}
}
}
Expand Down

0 comments on commit cde6b37

Please sign in to comment.