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>2014-02-05 18:07:18 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-02-05 18:07:18 +0400
commit6213d88c851d8a120b74056a6cc90a95d0cccddd (patch)
treeebe961aa2da9f0c78c1c91f3cb140272dd671309 /source/blender/blenlib/BLI_scanfill.h
parent41d23116aa4ed36aec8b480ce2fc207d72ad88ce (diff)
Scanfill: avoid converting int<>intptr_t for displist indices
Diffstat (limited to 'source/blender/blenlib/BLI_scanfill.h')
-rw-r--r--source/blender/blenlib/BLI_scanfill.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_scanfill.h b/source/blender/blenlib/BLI_scanfill.h
index 4639ddbb26a..8e5445b6af2 100644
--- a/source/blender/blenlib/BLI_scanfill.h
+++ b/source/blender/blenlib/BLI_scanfill.h
@@ -61,7 +61,7 @@ typedef struct ScanFillVert {
union {
struct ScanFillVert *v;
void *p;
- intptr_t l;
+ int i;
unsigned int u;
} tmp;
float co[3]; /* vertex location */