Add missing return type declaration

This commit is contained in:
Kristoffer Grönlund 2014-10-27 09:01:12 +01:00
parent 3b1480ff10
commit ce9b680784

2
stb.h
View File

@ -11050,7 +11050,7 @@ stb_arith_symstate *stb_arith_state_create(int num_sym)
return s; 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) { if (s->pow2 < POW2_LIMIT) {
int pcf, cf, cf_next, next, i; int pcf, cf, cf_next, next, i;