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-01-13 05:21:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-13 05:21:29 +0300
commit92826a921c2f17318bafa4d9dd4b7b7e1ba9c73d (patch)
tree9a5a8874fb8ad8f6f7e4d01a23b6ff088f0d18cb /source/blender/sequencer
parentbc584258626249a005a518661aabe080ec25f276 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/sequencer')
-rw-r--r--source/blender/sequencer/intern/image_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/sequencer/intern/image_cache.c b/source/blender/sequencer/intern/image_cache.c
index 6818df6a986..344b5af26aa 100644
--- a/source/blender/sequencer/intern/image_cache.c
+++ b/source/blender/sequencer/intern/image_cache.c
@@ -622,7 +622,7 @@ static bool seq_disk_cache_write_file(SeqDiskCache *disk_cache, SeqCacheKey *key
DiskCacheFile *cache_file = seq_disk_cache_get_file_entry_by_path(disk_cache, path);
DiskCacheHeader header;
memset(&header, 0, sizeof(header));
- /* BLI_make_existing_file() above may create an empty file. This is fine, don't atttempt reading
+ /* #BLI_make_existing_file() above may create an empty file. This is fine, don't attempt reading
* the header in that case. */
if (cache_file->fstat.st_size != 0 && !seq_disk_cache_read_header(file, &header)) {
fclose(file);