Skip to content
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

Use C99 types for uint32_t #2332

Merged
merged 2 commits into from
May 10, 2024
Merged

Use C99 types for uint32_t #2332

merged 2 commits into from
May 10, 2024

Commits on May 10, 2024

  1. nvme: Use C99 types for uint32_t

    <stdint.h> provides `uint32_t`, while `u_int_32` is an unofficial/internal
    typedef that glibc happens to provide. This fixes the build on musl.
    
    Bug: https://bugs.gentoo.org/931194
    Signed-off-by: Sam James <sam@gentoo.org>
    thesamesam authored and igaw committed May 10, 2024
    Configuration menu
    Copy the full SHA
    5d17e8b View commit details
    Browse the repository at this point in the history
  2. plugins/innogrit: u_char -> unsigned char

    `u_char` is not a standard name for `unsigned char` and may not work;
    some implementations may provide it for convenience.
    
    Signed-off-by: Sam James <sam@gentoo.org>
    thesamesam authored and igaw committed May 10, 2024
    Configuration menu
    Copy the full SHA
    2080a27 View commit details
    Browse the repository at this point in the history