From 16694ed408a533fcf275db8f92a5d0c7c0cbd854 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 24 Mar 2019 16:09:46 +1100 Subject: Cleanup: redundant use of string formatting functions --- source/blender/blenloader/intern/blend_validate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/blenloader/intern/blend_validate.c') diff --git a/source/blender/blenloader/intern/blend_validate.c b/source/blender/blenloader/intern/blend_validate.c index cc0ce61ec15..4d4a20adbdf 100644 --- a/source/blender/blenloader/intern/blend_validate.c +++ b/source/blender/blenloader/intern/blend_validate.c @@ -70,8 +70,8 @@ bool BLO_main_validate_libraries(Main *bmain, ReportList *reports) for (Main *curmain = bmain->next; curmain != NULL; curmain = curmain->next) { Library *curlib = curmain->curlib; if (curlib == NULL) { - BKE_reportf(reports, RPT_ERROR, - "Library database with NULL library datablock!"); + BKE_report(reports, RPT_ERROR, + "Library database with NULL library datablock!"); continue; } -- cgit v1.2.3