Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/makesdna/DNA_vfont_types.h')
-rw-r--r--source/blender/makesdna/DNA_vfont_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_vfont_types.h b/source/blender/makesdna/DNA_vfont_types.h
index 721a97742b9..5b5c8ea5f75 100644
--- a/source/blender/makesdna/DNA_vfont_types.h
+++ b/source/blender/makesdna/DNA_vfont_types.h
@@ -45,7 +45,8 @@ struct VFontData;
typedef struct VFont {
ID id;
- char name[1024]; /* 1024 = FILE_MAX */
+ /** 1024 = FILE_MAX. */
+ char name[1024];
struct VFontData *data;
struct PackedFile *packedfile;