Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xiph/speex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Storsjo <martin@martin.st>2017-11-03 13:11:13 +0300
committerTristan Matthews <tmatth@videolan.org>2017-11-03 16:43:04 +0300
commit566e3a9466d199f7d8e8f7fcf79f2754187e3bfc (patch)
tree2a287c055ff08a22066359c8eafde69b79001059
parentcae5026cfd88782c7051af6e685059223578b7e9 (diff)
Add a (void) parameter list to a function declaration
This fixes warnings in calling code about "this function declaration is not a prototype".
-rw-r--r--include/speex/speex_stereo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/speex/speex_stereo.h b/include/speex/speex_stereo.h
index 5844f5a..12af2bb 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();
+SpeexStereoState *speex_stereo_state_init(void);
/** Reset/re-initialise an already allocated stereo state */
void speex_stereo_state_reset(SpeexStereoState *stereo);