From ce9b680784956d8b55649bd5e10dd9490305e465 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristoffer=20Gr=C3=B6nlund?= Date: Mon, 27 Oct 2014 09:01:12 +0100 Subject: [PATCH] Add missing return type declaration --- stb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stb.h b/stb.h index b930d85..864aef5 100644 --- a/stb.h +++ b/stb.h @@ -11050,7 +11050,7 @@ stb_arith_symstate *stb_arith_state_create(int num_sym) return s; } -static stb_arith_state_rescale(stb_arith_symstate *s) +static void stb_arith_state_rescale(stb_arith_symstate *s) { if (s->pow2 < POW2_LIMIT) { int pcf, cf, cf_next, next, i;