From 3e3032cfa044268cee76735823755db274025021 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Tue, 13 Jun 2023 18:27:10 -0700 Subject: *: smattering of random small fixes to silence -Wall I thought the build was already using -Wall but that seems to not be the case, maybe got lost somewhere along the line or messed up in configure.ac After forcing a build with -Wall -Werror, these showed up. Fixed up in the obvious way, nothing too scary. --- src/modules/flui2d/flui2d.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules/flui2d') diff --git a/src/modules/flui2d/flui2d.c b/src/modules/flui2d/flui2d.c index 09869b3..147bb32 100644 --- a/src/modules/flui2d/flui2d.c +++ b/src/modules/flui2d/flui2d.c @@ -365,7 +365,7 @@ static void flui2d_render_fragment(til_module_context_t *context, til_stream_t * y1 = y0 + 1; for (int x = fragment->x; x < fragment->x + fragment->width; x++) { - float X, dens, dx0, dx1; + float X, dx0, dx1; int x0, x1; float r, g, b; -- cgit v1.2.1