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 ""; return "";
/* Version header. */ /* Version header. */
str << lines->elems[0].data;; str << lines->elems[0].data;
str << '\n'; str << '\n';
for (i = 1; i < lines->size; i++) 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) static void ffmpeg_flush_buffers(ffmpeg_t *handle)
{ {
void *audio_buf = NULL; void *audio_buf = NULL;
bool did_work = false;; bool did_work = false;
void *video_buf = av_malloc(2 * handle->params.fb_width * void *video_buf = av_malloc(2 * handle->params.fb_width *
handle->params.fb_height * handle->video.pix_size); handle->params.fb_height * handle->video.pix_size);
size_t audio_buf_size = handle->config.audio_enable ? size_t audio_buf_size = handle->config.audio_enable ?