summaryrefslogtreecommitdiff
blob: f9ee064b0a733746e4d80611b11285abe3e4c6a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
By default clang16 will not allow implicit integer declarations in function parameters.

Bug: https://bugs.gentoo.org/874891

Signed-off-by: Pascal Jäger <pascal.jaeger@leimstift.de>
--- a/gkrellshoot.c
+++ b/gkrellshoot.c
@@ -436,7 +436,7 @@ double star_screenx[NUM_STARS];
 double star_screeny[NUM_STARS];
 
 static void
-draw_starfield ( chart_index )
+draw_starfield ( size_t  chart_index )
 {
   gint i;
   guchar b;
-- 
2.38.1