From: Steinar H. Gunderson Date: Sun, 29 Mar 2020 11:25:54 +0000 (+0200) Subject: Fix some leftovers in warning messages. X-Git-Tag: 1.9.2~4 X-Git-Url: https://git.sesse.net/?p=nageru;a=commitdiff_plain;h=f7752bad9a473d26ff1fa7c83ac82dca098b63bb Fix some leftovers in warning messages. --- 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: