-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expand all appearances of uint to unsigned int #27
base: master
Are you sure you want to change the base?
Conversation
This commit resolves a build issue with musl libc found in Gentoo [1], where uint definition is not available in two places and simplest solution is to expand it to unsigned int. [1] https://bugs.gentoo.org/712624 Signed-off-by: Petr Vaněk <[email protected]>
Upstream-PR: tat/mimetic#27 Closes: https://bugs.gentoo.org/712624 Signed-off-by: Petr Vaněk <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In #22 the maintainer has requested a different approach.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In #22 the maintainer requested a different approach.
This commit changes all uint to unsigned int as it was suggested in [1]. [1] tat#22 (comment) Signed-off-by: Petr Vaněk <[email protected]>
I decided to go with second option, I have changed it everywhere. |
Upstream-PR: tat/mimetic#27 Closes: https://bugs.gentoo.org/712624 Signed-off-by: Petr Vaněk <[email protected]> Closes: #24585 Signed-off-by: Sam James <[email protected]>
This commit resolves a build issue with musl libc found in Gentoo, where
uint
definition is not available in two places and simplest solution is to expand it tounsigned int
.