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>2012-04-16 19:13:21 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-16 19:13:21 +0400
commit0f7ab89b4ee803aa9cb2182eb6f394d2cf28de56 (patch)
treefe453180733b42277aac112d0240bd2323df30e4 /source/blender/blenlib/intern/storage.c
parente0605cca9a09d9d33974f7beea3acbb1741b476e (diff)
fix for fail thumbs being used when the failed thumbnail image is older then the image/movie/blend.
Diffstat (limited to 'source/blender/blenlib/intern/storage.c')
-rw-r--r--source/blender/blenlib/intern/storage.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/storage.c b/source/blender/blenlib/intern/storage.c
index 9bcbdcce12e..f4070f76519 100644
--- a/source/blender/blenlib/intern/storage.c
+++ b/source/blender/blenlib/intern/storage.c
@@ -551,6 +551,7 @@ void BLI_file_free_lines(LinkNode *lines)
BLI_linklist_free(lines, (void(*)(void*)) MEM_freeN);
}
+/** is file1 older then file2 */
int BLI_file_older(const char *file1, const char *file2)
{
#ifdef WIN32