From 6253d5acef0bdc2f0505da227f30db7f87d739a0 Mon Sep 17 00:00:00 2001 From: Tim Terriberry Date: Mon, 2 Dec 2013 23:23:39 +0000 Subject: [PATCH] Make definition of _vorbis_window_get() match declaration. window.c wasn't actually including window.h, or this would have been noticed earlier. svn path=/trunk/vorbis/; revision=19028 --- lib/window.c | 1 + lib/window.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/window.c b/lib/window.c index 56299c4..7dfb1cf 100644 --- a/lib/window.c +++ b/lib/window.c @@ -19,6 +19,7 @@ #include #include "os.h" #include "misc.h" +#include "window.h" static const float vwin64[32] = { 0.0009460463F, 0.0085006468F, 0.0235352254F, 0.0458950567F, diff --git a/lib/window.h b/lib/window.h index a13baba..934ed33 100644 --- a/lib/window.h +++ b/lib/window.h @@ -18,7 +18,7 @@ #ifndef _V_WINDOW_ #define _V_WINDOW_ -extern float *_vorbis_window_get(int n); +extern const float *_vorbis_window_get(int n); extern void _vorbis_apply_window(float *d,int *winno,long *blocksizes, int lW,int W,int nW); -- 2.7.4