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-05 01:14:47 +0300
commit95a60fe84d5e4053aba53faa0089f5064d4103bd (patch)
tree9b18e3fbb7fbc4a3eefa1aa255d0fc23fd3c66cb /source/blender/editors/space_sequencer
parentb45828ebe9c6e729c5d65bb23f913088f3f8672c (diff)
Fix errors in fix for T68018
Diffstat (limited to 'source/blender/editors/space_sequencer')
-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 ca1c55b80eb..03dfe502431 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);
}
}
}