]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
move nonnull annotation to the right function
authorAlan T. DeKok <aland@freeradius.org>
Wed, 6 Mar 2024 19:03:12 +0000 (14:03 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Wed, 6 Mar 2024 19:03:12 +0000 (14:03 -0500)
src/lib/bio/retry.h

index 3ea537e21eb5a6c937383d2479fc30963e31e297..888e0e3a8242c3c872428dadae154d057a091730 100644 (file)
@@ -108,9 +108,9 @@ fr_bio_t    *fr_bio_retry_alloc(TALLOC_CTX *ctx, size_t max_saved,
                                    fr_bio_retry_config_t const *cfg,
                                    fr_bio_t *next) CC_HINT(nonnull(1,3,4,6,7,8));
 
-int            fr_bio_retry_entry_cancel(fr_bio_t *bio, fr_bio_retry_entry_t *retry_ctx) CC_HINT(nonnull);
+int            fr_bio_retry_entry_cancel(fr_bio_t *bio, fr_bio_retry_entry_t *retry_ctx) CC_HINT(nonnull(1));
 
-int            fr_bio_retry_entry_start(fr_bio_t *bio, fr_bio_retry_entry_t *retry_ctx, fr_retry_config_t const *cfg) CC_HINT(nonnull(1));
+int            fr_bio_retry_entry_start(fr_bio_t *bio, fr_bio_retry_entry_t *retry_ctx, fr_retry_config_t const *cfg) CC_HINT(nonnull);
 
 const fr_retry_t *fr_bio_retry_entry_info(fr_bio_t *bio, fr_bio_retry_entry_t *retry_ctx) CC_HINT(nonnull);