Commit 224e6c12 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

glspectrum: missing void

parent e737cf0b
...@@ -215,7 +215,7 @@ static block_t *DoWork(filter_t *p_filter, block_t *p_in_buf) ...@@ -215,7 +215,7 @@ static block_t *DoWork(filter_t *p_filter, block_t *p_in_buf)
/** /**
* Init the OpenGL scene. * Init the OpenGL scene.
**/ **/
static void initOpenGLScene() static void initOpenGLScene(void)
{ {
glEnable(GL_CULL_FACE); glEnable(GL_CULL_FACE);
glEnable(GL_DEPTH_TEST); glEnable(GL_DEPTH_TEST);
...@@ -247,7 +247,7 @@ static void initOpenGLScene() ...@@ -247,7 +247,7 @@ static void initOpenGLScene()
/** /**
* Draw one bar of the Spectrum. * Draw one bar of the Spectrum.
*/ */
static void drawBar() static void drawBar(void)
{ {
const float w = SPECTRUM_WIDTH / NB_BANDS - 0.05; const float w = SPECTRUM_WIDTH / NB_BANDS - 0.05;
...@@ -559,4 +559,3 @@ error: ...@@ -559,4 +559,3 @@ error:
vlc_sem_post(&p_sys->ready); vlc_sem_post(&p_sys->ready);
return NULL; return NULL;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment