You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/x11-plugins/gkrellshoot/files/gkrellshoot-0.4.4-r5-fix-im...

20 lines
435 B

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