New commits:
commit 969765e2b922b009ad30d094f31edc81cb64de72
Author: Daiki Ueno <[email protected]>
Date:   Thu Jan 29 11:34:17 2026 +0900

    Fix compilation error on Fedora 44
    
    On Fedora 44, where -Wunused-but-set-variable is enabled with GCC 16,
    the build fails with:
    
      ikev2_proposals.c: In function ‘process_transforms’:
      ikev2_proposals.c:453:46: error: variable ‘local_proposal’ set but not 
used [-Werror=unused-but-set-variable=]
        453 |                 const struct ikev2_proposal *local_proposal;
            |                                              ^~~~~~~~~~~~~~
      ikev2_proposals.c:773:32: error: variable ‘local_proposal’ set but not 
used [-Werror=unused-but-set-variable=]
        773 |         struct ikev2_proposal *local_proposal;
            |                                ^~~~~~~~~~~~~~
      cc1: all warnings being treated as errors
    
    This fixes it by adding the UNUSED attribute to the local variable.
    
    Signed-off-by: Daiki Ueno <[email protected]>
    Signed-off-by: Andrew Cagney <[email protected]>

_______________________________________________
Swan-commit mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to