Displaying 1 result from an estimated 1 matches for "5844f5a1".
2017 Nov 03
1
[PATCH] Add a (void) parameter list to a function declaration
This fixes warnings in calling code about "this function declaration
is not a prototype".
---
include/speex/speex_stereo.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/speex/speex_stereo.h b/include/speex/speex_stereo.h
index 5844f5a1..12af2bbf 100644
--- a/include/speex/speex_stereo.h
+++ b/include/speex/speex_stereo.h
@@ -61,7 +61,7 @@ typedef struct SpeexStereoState {
#define SPEEX_STEREO_STATE_INIT {1,.5,1,1,0,0}
/** Initialise/create a stereo stereo state */
-SpeexStereoState *speex_stereo_state_init();
+SpeexStereoStat...