From 7b71866f493b39628b29fb5b797089d9171cef38 Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Tue, 3 Jul 2018 02:06:04 +0300 Subject: [PATCH] forgot to change the dtx_gl_init return type in the prototype --- src/drawgl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drawgl.c b/src/drawgl.c index 23eaaf8..dc7a6ee 100644 --- a/src/drawgl.c +++ b/src/drawgl.c @@ -71,7 +71,7 @@ static void add_glyph(struct glyph *g, float x, float y); #endif /* __APPLE__ */ #endif /* !TARGET_IPHONE */ -static int dtx_gl_init(void); +static void dtx_gl_init(void); static void cleanup(void); static void flush(void);