diff options
author | Tom Rini <trini@konsulko.com> | 2023-03-22 20:57:39 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-03-22 20:57:39 -0400 |
commit | 884d626d8357853c012d535bf26c143bb7b5e6a5 (patch) | |
tree | 06ac245b48b6cc59b392b5117030dffd63459db1 /lib/zlib/trees.c | |
parent | 12340b122b354ecca350c0d08ac3d825897bdafa (diff) | |
parent | 486930bd7fe1db63c302c960445cdd4be4a4f1d1 (diff) |
Merge branch '2023-03-22-assorted-minor-code-cleanups' into next
- Minor code cleanups based on problems found by clang or enabling LTO.
Diffstat (limited to 'lib/zlib/trees.c')
-rw-r--r-- | lib/zlib/trees.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/zlib/trees.c b/lib/zlib/trees.c index 970bc5dbc64..e040617686a 100644 --- a/lib/zlib/trees.c +++ b/lib/zlib/trees.c @@ -237,7 +237,7 @@ local void send_bits(s, value, length) /* =========================================================================== * Initialize the various 'constant' tables. */ -local void tr_static_init() +local void tr_static_init(void) { #if defined(GEN_TREES_H) || !defined(STDC) static int static_init_done = 0; |