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:
authorCampbell Barton <ideasman42@gmail.com>2021-10-06 01:28:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-10-06 01:28:00 +0300
commit6d2b486e431dae57536a5a7d9b64c62144754363 (patch)
treec08b4fb3a5f33ee71615e38d1b77bd6820fd4e9c /source/blender/imbuf/intern/anim_movie.c
parent7b5835c793fbc5459ad64be4e8c7ceabd45cd668 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/imbuf/intern/anim_movie.c')
-rw-r--r--source/blender/imbuf/intern/anim_movie.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/source/blender/imbuf/intern/anim_movie.c b/source/blender/imbuf/intern/anim_movie.c
index 4eb078113dd..c11c6d778a1 100644
--- a/source/blender/imbuf/intern/anim_movie.c
+++ b/source/blender/imbuf/intern/anim_movie.c
@@ -1496,14 +1496,15 @@ static void free_anim_ffmpeg(struct anim *anim)
#endif
-/* Try to init the anim struct.
- * Returns true on success.*/
-
+/**
+ * Try to initialize the #anim struct.
+ * Returns true on success.
+ */
static bool anim_getnew(struct anim *anim)
{
BLI_assert(anim->curtype == ANIM_NONE);
if (anim == NULL) {
- /* Nothing to init. */
+ /* Nothing to initialize. */
return false;
}