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

proc_loadavg.c: Fix incompatible integer to pointer conversion #610

Merged
merged 1 commit into from
Sep 15, 2023

Commits on Sep 5, 2023

  1. proc_loadavg.c: Fix incompatible integer to pointer conversion

    Newer compiler like Clang 16 and GCC 14 have certain error enabled by
    default, namely -Werror=incompatible-function-pointer-types. Which
    resutls in build error such as:
    
    proc_loadavg.c:606:10: error: incompatible integer to pointer conversion returning int from a function with result type pthread_t
    
    My patch supresses the error for now, but a proper fix would be better.
    Fist discovered on Gentoo linux (bug #894348).
    
    Bug: https://bugs.gentoo.org/894348
    Closes: lxc#561
    Signed-off-by: Brahmajit Das <[email protected]>
    listout committed Sep 5, 2023
    Configuration menu
    Copy the full SHA
    1ce7d26 View commit details
    Browse the repository at this point in the history