From c39c6a745f443ee2f8635fa5c458c1ce1d0489eb Mon Sep 17 00:00:00 2001 From: gitlost Date: Mon, 2 Sep 2019 18:10:21 +0100 Subject: [PATCH] Arg typo in raster draw_bullseye --- backend/raster.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/raster.c b/backend/raster.c index c1914efa..d8556840 100644 --- a/backend/raster.c +++ b/backend/raster.c @@ -238,7 +238,7 @@ void draw_circle(char *pixelbuf, int image_width, int image_height, int x0, int } } -void draw_bullseye(char pixelbuf, int image_width, int image_height, int xoffset, int yoffset, int scaler) { +void draw_bullseye(char *pixelbuf, int image_width, int image_height, int xoffset, int yoffset, int scaler) { /* Central bullseye in Maxicode symbols */ float x = 14.5 * scaler; float y = 15.0 * scaler;