From f7752bad9a473d26ff1fa7c83ac82dca098b63bb Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 29 Mar 2020 13:25:54 +0200 Subject: [PATCH] Fix some leftovers in warning messages. --- nageru/decklink_output.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nageru/decklink_output.cpp b/nageru/decklink_output.cpp index f6826b5..c9cd481 100644 --- a/nageru/decklink_output.cpp +++ b/nageru/decklink_output.cpp @@ -462,12 +462,12 @@ HRESULT DeckLinkOutput::ScheduledFrameCompleted(/* in */ IDeckLinkVideoFrame *co ++metric_decklink_output_completed_frames_late; break; case bmdOutputFrameDropped: - fprintf(stderr, "Output frame was dropped (pts=%" PRId64 "ld)\n", frame->pts); + fprintf(stderr, "Output frame was dropped (pts=%" PRId64 ")\n", frame->pts); fprintf(stderr, "Consider increasing --output-buffer-frames if this persists.\n"); ++metric_decklink_output_completed_frames_dropped; break; case bmdOutputFrameFlushed: - fprintf(stderr, "Output frame was flushed (pts=%" PRId64 "ld)\n", frame->pts); + fprintf(stderr, "Output frame was flushed (pts=%" PRId64 ")\n", frame->pts); ++metric_decklink_output_completed_frames_flushed; break; default: -- 2.39.2