From: ethan-thompson Date: Mon, 3 Jun 2024 18:54:13 +0000 (-0400) Subject: resolved missing previous extern declaration for fr_table_num_sorted_t by declaring... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=064db355e43067b0216945fbb10462d5957cec7f;p=thirdparty%2Ffreeradius-server.git resolved missing previous extern declaration for fr_table_num_sorted_t by declaring it as static --- diff --git a/src/modules/rlm_brotli/rlm_brotli.c b/src/modules/rlm_brotli/rlm_brotli.c index 3cf663de5a9..c4e1a685037 100644 --- a/src/modules/rlm_brotli/rlm_brotli.c +++ b/src/modules/rlm_brotli/rlm_brotli.c @@ -62,7 +62,7 @@ typedef struct { bool large_window; //!< non-standard "large", window size. } rlm_brotli_t; -fr_table_num_sorted_t const brotli_mode[] = { +static fr_table_num_sorted_t const brotli_mode[] = { { L("font"), BROTLI_MODE_FONT }, //!< Probably not useful? { L("generic"), BROTLI_MODE_GENERIC }, { L("text"), BROTLI_MODE_TEXT },