From 873f8b13eceb19ecf439e678b4b2e9de86300c14 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 12 Mar 2019 16:59:04 +1100 Subject: Cleanup: BLI_utildefines struct macros Use the term "AFTER" instead of "OFS" since it wasn't obvious these macros operate on everything after the struct member passed. Avoid casting to non-const types when only reading. --- source/blender/blenkernel/intern/material.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenkernel/intern/material.c') diff --git a/source/blender/blenkernel/intern/material.c b/source/blender/blenkernel/intern/material.c index d821052f2f4..90b25e8fd49 100644 --- a/source/blender/blenkernel/intern/material.c +++ b/source/blender/blenkernel/intern/material.c @@ -127,7 +127,7 @@ void BKE_material_init_gpencil_settings(Material *ma) void BKE_material_init(Material *ma) { - BLI_assert(MEMCMP_STRUCT_OFS_IS_ZERO(ma, id)); + BLI_assert(MEMCMP_STRUCT_AFTER_IS_ZERO(ma, id)); ma->r = ma->g = ma->b = 0.8; ma->specr = ma->specg = ma->specb = 1.0; -- cgit v1.2.3