From d2601ece94a01e6c6a15a07b028a6a25be4072b1 Mon Sep 17 00:00:00 2001 From: catull Date: Thu, 13 Aug 2026 00:38:27 +0200 Subject: [PATCH] Correct the return value reference to Tuple *. --- caltech-other/voronoi/src/mod3_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caltech-other/voronoi/src/mod3_main.c b/caltech-other/voronoi/src/mod3_main.c index ffabd46c60..f2cb7b3d40 100644 --- a/caltech-other/voronoi/src/mod3_main.c +++ b/caltech-other/voronoi/src/mod3_main.c @@ -160,7 +160,7 @@ mod3_getnext(void) { Triple *t; if (!triples) - return (void *)0; + return (Triple *)0; { struct Triple *u=triples;