From d095fcd6b417e7b2d70d9c6ffd9fcf900935c0ec Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Sun, 22 May 2022 20:26:25 +0200 Subject: Cleanup: Fix build error after previous commit I'm not sure how that happened, sorry for the noise. --- source/blender/blenkernel/intern/customdata.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenkernel') diff --git a/source/blender/blenkernel/intern/customdata.cc b/source/blender/blenkernel/intern/customdata.cc index 104b42de654..27e8bf96dc6 100644 --- a/source/blender/blenkernel/intern/customdata.cc +++ b/source/blender/blenkernel/intern/customdata.cc @@ -5154,7 +5154,7 @@ static void write_mdisps(BlendWriter *writer, int count, const MDisps *mdlist, i if (mdlist) { BLO_write_struct_array(writer, MDisps, count, mdlist); for (int i = 0; i < count; i++) { - MDisps *md = &mdlist[i]; + const MDisps *md = &mdlist[i]; if (md->disps) { if (!external) { BLO_write_float3_array(writer, md->totdisp, &md->disps[0][0]); -- cgit v1.2.3