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>2016-05-11 14:36:42 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-05-11 14:36:42 +0300
commitd57f416e47f54241dea0892f3b064afbe1b8a899 (patch)
tree46b9c812301668cd27eae92f1f5638e12c6d6492 /source/blender/python/intern/bpy_rna_anim.c
parent67d2de882841f56c9cd35f0f0e7329b0c9190c97 (diff)
Fix incorrect FLT_MIN use
Diffstat (limited to 'source/blender/python/intern/bpy_rna_anim.c')
-rw-r--r--source/blender/python/intern/bpy_rna_anim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_rna_anim.c b/source/blender/python/intern/bpy_rna_anim.c
index 2ec73c3c9b7..92931eb8090 100644
--- a/source/blender/python/intern/bpy_rna_anim.c
+++ b/source/blender/python/intern/bpy_rna_anim.c
@@ -27,7 +27,7 @@
*/
#include <Python.h>
-#include <float.h> /* FLT_MIN/MAX */
+#include <float.h> /* FLT_MAX */
#include "MEM_guardedalloc.h"