diff --git a/source/blender/editors/animation/keyframing.cc b/source/blender/editors/animation/keyframing.cc index 58d13e7577a..3c87baeb6fb 100644 --- a/source/blender/editors/animation/keyframing.cc +++ b/source/blender/editors/animation/keyframing.cc @@ -976,14 +976,14 @@ static wmOperatorStatus delete_key_vse_without_keying_set(bContext *C, wmOperato if (modified_strips.is_empty()) { BKE_reportf(op->reports, RPT_WARNING, - "No keyframes removed from %ld strip(s)", + "No keyframes removed from %" PRId64 " strip(s)", selected_strips_rna_paths.size()); return OPERATOR_CANCELLED; } BKE_reportf(op->reports, RPT_INFO, - "%ld strip(s) successfully had %ld keyframes removed", + "%" PRId64 " strip(s) successfully had %" PRId64 " keyframes removed", modified_strips.size(), modified_fcurves.size()); }