ffmpeg: fix error duplicate ‘const’ declaration specifier

This commit is contained in:
GetAway
2019-06-18 18:24:25 +02:00
parent c8eda96620
commit 731505ddf2
2 changed files with 2 additions and 2 deletions

View File

@@ -188,7 +188,7 @@ void getfillerMutex(const char *filename __attribute__((unused)), const char *fu
ffmpeg_printf(100, "::%d received mutex\n", line);
}
void releasefillerMutex(const char *filename __attribute__((unused)), const const char *function __attribute__((unused)), int line __attribute__((unused)))
void releasefillerMutex(const char *filename __attribute__((unused)), const char *function __attribute__((unused)), int line __attribute__((unused)))
{
pthread_mutex_unlock(&fillermutex);

View File

@@ -158,7 +158,7 @@ static void getMutex(const char *filename __attribute__((unused)), const char *f
ffmpeg_printf(100, "::%d received mutex\n", line);
}
static void releaseMutex(const char *filename __attribute__((unused)), const const char *function __attribute__((unused)), int32_t line __attribute__((unused)))
static void releaseMutex(const char *filename __attribute__((unused)), const char *function __attribute__((unused)), int32_t line __attribute__((unused)))
{
pthread_mutex_unlock(&mutex);