Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The format "%x" is treated as an unsigned int by the GCC compiler. Use static_cast to cast the error to an unsigned int to match the "%x" type. Additionally, replace int(error) with static_cast<int>(error) to avoid the old-style cast warning.
- Loading branch information