[Bf-blender-cvs] [7ea4718] alembic: Fix for use of unknown uint type instead of unsigned int.

Lukas Tönne noreply at git.blender.org
Thu Mar 26 13:55:15 CET 2015


Commit: 7ea4718c39959863ed9dc5fa531d738c631c9bbd
Author: Lukas Tönne
Date:   Tue Mar 24 09:29:53 2015 +0100
Branches: alembic
https://developer.blender.org/rB7ea4718c39959863ed9dc5fa531d738c631c9bbd

Fix for use of unknown uint type instead of unsigned int.

===================================================================

M	source/blender/blenkernel/intern/cache_library.c

===================================================================

diff --git a/source/blender/blenkernel/intern/cache_library.c b/source/blender/blenkernel/intern/cache_library.c
index 9f2dc03..8b66200 100644
--- a/source/blender/blenkernel/intern/cache_library.c
+++ b/source/blender/blenkernel/intern/cache_library.c
@@ -307,7 +307,7 @@ BLI_INLINE unsigned int hash_int_2d(unsigned int kx, unsigned int ky)
 {
 #define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k))))
 
-	uint a, b, c;
+	unsigned int a, b, c;
 
 	a = b = c = 0xdeadbeef + (2 << 2) + 13;
 	a += kx;




More information about the Bf-blender-cvs mailing list