Remove double ';'

This commit is contained in:
twinaphex 2020-05-19 21:29:35 +02:00
parent ad1aa59ce1
commit 2a36fa0855
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ static std::string build_stage_source(
return "";
/* Version header. */
str << lines->elems[0].data;;
str << lines->elems[0].data;
str << '\n';
for (i = 1; i < lines->size; i++)

View File

@ -1604,7 +1604,7 @@ static void ffmpeg_flush_video(ffmpeg_t *handle)
static void ffmpeg_flush_buffers(ffmpeg_t *handle)
{
void *audio_buf = NULL;
bool did_work = false;;
bool did_work = false;
void *video_buf = av_malloc(2 * handle->params.fb_width *
handle->params.fb_height * handle->video.pix_size);
size_t audio_buf_size = handle->config.audio_enable ?