From a1d7f67d81bdc7ece8a757ab79d0b64f4e612bfd Mon Sep 17 00:00:00 2001 From: Mike Erwin Date: Thu, 28 Jan 2016 00:30:50 -0500 Subject: cleanup: spelling / typos no functional changes --- source/blender/imbuf/intern/anim_movie.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/imbuf') diff --git a/source/blender/imbuf/intern/anim_movie.c b/source/blender/imbuf/intern/anim_movie.c index e2d56d29726..d5ff427f204 100644 --- a/source/blender/imbuf/intern/anim_movie.c +++ b/source/blender/imbuf/intern/anim_movie.c @@ -127,9 +127,9 @@ static void free_anim_movie(struct anim *UNUSED(anim)) #if defined(_WIN32) -# define PATHSEPERATOR '\\' +# define PATHSEPARATOR '\\' #else -# define PATHSEPERATOR '/' +# define PATHSEPARATOR '/' #endif static int an_stringdec(const char *string, char *head, char *tail, unsigned short *numlen) @@ -142,7 +142,7 @@ static int an_stringdec(const char *string, char *head, char *tail, unsigned sho nume = len; for (i = len - 1; i >= 0; i--) { - if (string[i] == PATHSEPERATOR) break; + if (string[i] == PATHSEPARATOR) break; if (isdigit(string[i])) { if (found) { nums = i; @@ -826,7 +826,7 @@ static int ffmpeg_decode_video_frame(struct anim *anim) * which is necessary to decode the remaining data * in the decoder engine after EOF. It also prevents a memory * leak, since av_read_frame spills out a full size packet even - * on EOF... (and: it's save to call on NULL packets) */ + * on EOF... (and: it's safe to call on NULL packets) */ av_free_packet(&anim->next_packet); -- cgit v1.2.3