From 7b61fe1638051b3b2e296680a000819f31672414 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 26 Aug 2019 14:32:35 +1000 Subject: Cleanup: use BLI_assert --- source/blender/blenlib/intern/math_color.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenlib/intern/math_color.c') diff --git a/source/blender/blenlib/intern/math_color.c b/source/blender/blenlib/intern/math_color.c index f07c2ec159e..cc29ebe4f20 100644 --- a/source/blender/blenlib/intern/math_color.c +++ b/source/blender/blenlib/intern/math_color.c @@ -153,7 +153,7 @@ void rgb_to_ycc(float r, float g, float b, float *ly, float *lcb, float *lcr, in cr = (0.5f * sr) - (0.41869f * sg) - (0.08131f * sb) + 128.0f; break; default: - assert(!"invalid colorspace"); + BLI_assert(!"invalid colorspace"); break; } -- cgit v1.2.3