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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2012-05-04 16:46:51 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2012-05-04 16:46:51 +0400
commit68d9e73ecd81186fe6934c48f6c26d89d788d343 (patch)
tree59a1794b3432b4c62fd90cad51127baef117c268 /source/blender/blenlib/BLI_ghash.h
parenta0ce240de94521b6caf55b0738b70f2dc2ad3353 (diff)
Fix: forgot to commit these files as part of strand bugfix.
Diffstat (limited to 'source/blender/blenlib/BLI_ghash.h')
-rw-r--r--source/blender/blenlib/BLI_ghash.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_ghash.h b/source/blender/blenlib/BLI_ghash.h
index 02042fbfb95..b178538edf2 100644
--- a/source/blender/blenlib/BLI_ghash.h
+++ b/source/blender/blenlib/BLI_ghash.h
@@ -149,10 +149,10 @@ int BLI_ghashutil_intcmp (const void *a, const void *b);
typedef struct GHashPair {
const void *first;
- int second;
+ const void *second;
} GHashPair;
-GHashPair* BLI_ghashutil_pairalloc (const void *first, int second);
+GHashPair* BLI_ghashutil_pairalloc (const void *first, const void *second);
unsigned int BLI_ghashutil_pairhash (const void *ptr);
int BLI_ghashutil_paircmp (const void *a, const void *b);
void BLI_ghashutil_pairfree (void *ptr);