]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Remove nonnull until we can figure out how to make it work correctly with NDEBUG
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Sat, 10 Dec 2022 23:19:08 +0000 (17:19 -0600)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Sat, 10 Dec 2022 23:19:08 +0000 (17:19 -0600)
src/lib/util/event.h

index 96c1af951aec5e4354cc5e15a4cfc2743ba1d648..05b39abbb2f0befebff53e385e7cdb4bfe8b7f73 100644 (file)
@@ -272,9 +272,8 @@ unsigned int        fr_event_list_reap_signal(fr_event_list_t *el, fr_time_delta_t time
 int            fr_event_timer_run(fr_event_list_t *el, fr_time_t *when);
 
 int            _fr_event_user_insert(NDEBUG_LOCATION_ARGS
-                                     TALLOC_CTX *ctx, fr_event_user_t **ev_p,
-                                     fr_event_list_t *el,
-                                     bool trigger, fr_event_user_cb_t callback, void *uctx) CC_HINT(nonnull(NDEBUG_LOCATION_NONNULL(2)));
+                                     TALLOC_CTX *ctx, fr_event_list_t *el, fr_event_user_t **ev_p,
+                                     bool trigger, fr_event_user_cb_t callback, void *uctx);
 #define                fr_event_user_insert(_ctx, _ev_p, _el, _trigger, _callback, _uctx) \
                        _fr_event_user_insert(NDEBUG_LOCATION_EXP _ctx, _ev_p, _el, _trigger, _callback, _uctx)