Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-11-03 09:56:05 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-11-03 09:56:05 +0300
commitb5244cd5dc1aa9ac70f926435e1449aa77548fae (patch)
tree0382931a8dd001587fd6d7d9f99c119c86a0cc3f /source/blender/editors/space_sequencer/sequencer_edit.c
parentd4bef6a215080e99119089148c0368e60c43f436 (diff)
Fix errors in fix for T68018
Diffstat (limited to 'source/blender/editors/space_sequencer/sequencer_edit.c')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_edit.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index dc4299b637b..ed384cfc1a8 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -219,8 +219,7 @@ static void seq_proxy_build_job(const bContext *C, ReportList *reports)
bool success = BKE_sequencer_proxy_rebuild_context(
pj->main, pj->depsgraph, pj->scene, seq, file_list, &pj->queue);
if (!success) {
-
- BKE_reportf(reports, RPT_ERROR, "Could not build proxy for strip %s", &seq->name);
+ BKE_reportf(reports, RPT_ERROR, "Could not build proxy for strip %s", seq->name);
}
}
}