From 8cb3b49e51469b9689bfa44b85349149e17699dc Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 10 Sep 2022 16:51:15 +1000 Subject: Cleanup: replace strncpy with BLI_strncpy Also replace strncpy+strcat with BLI_string_join --- source/blender/editors/space_info/space_info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/space_info/space_info.c') diff --git a/source/blender/editors/space_info/space_info.c b/source/blender/editors/space_info/space_info.c index 1513ba5e892..63c8d74c684 100644 --- a/source/blender/editors/space_info/space_info.c +++ b/source/blender/editors/space_info/space_info.c @@ -254,7 +254,7 @@ void ED_spacetype_info(void) ARegionType *art; st->spaceid = SPACE_INFO; - strncpy(st->name, "Info", BKE_ST_MAXNAME); + STRNCPY(st->name, "Info"); st->create = info_create; st->free = info_free; -- cgit v1.2.3