From: Alan T. DeKok Date: Tue, 16 Dec 2025 17:45:03 +0000 (+0100) Subject: there's no need to make this "const" X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff89dd385b0585f46ba39016125744a425f75756;p=thirdparty%2Ffreeradius-server.git there's no need to make this "const" --- diff --git a/src/lib/util/value.h b/src/lib/util/value.h index d7c04b92ac5..c8dfe5f56d8 100644 --- a/src/lib/util/value.h +++ b/src/lib/util/value.h @@ -148,7 +148,7 @@ typedef union { size_t size; //!< System specific file/memory size. fr_time_delta_t time_delta; //!< a delta time in nanoseconds - fr_dict_attr_t const * _CONST da; //!< dictionary reference + fr_dict_attr_t const *da; //!< dictionary reference fr_value_box_list_t children; //!< for groups } fr_value_box_datum_t;