]> git.sesse.net Git - nageru/commitdiff
Fix some leftovers in warning messages.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 29 Mar 2020 11:25:54 +0000 (13:25 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 29 Mar 2020 11:25:54 +0000 (13:25 +0200)
nageru/decklink_output.cpp

index f6826b51366e4a73afcfdcf0edac39179601a5ad..c9cd481c4d49e411dcdeb69028408bb3d20bcc18 100644 (file)
@@ -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: