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>2013-09-02 21:59:04 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-09-02 21:59:04 +0400
commit1ea9f88ff9ef57746a60306022448ad215007ba6 (patch)
tree3d3aca72fc2388a14a8a12bfe10be28a3026b059 /source/blender/blenlib/intern/BLI_ghash.c
parent15039b14fffd783f4f9da86b6de8596f7d904baa (diff)
warning cleanup: correct some odd returns and quiet strict flag warnings on some systems.
Diffstat (limited to 'source/blender/blenlib/intern/BLI_ghash.c')
-rw-r--r--source/blender/blenlib/intern/BLI_ghash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/BLI_ghash.c b/source/blender/blenlib/intern/BLI_ghash.c
index 7b50e9012a8..fcca6cd59ba 100644
--- a/source/blender/blenlib/intern/BLI_ghash.c
+++ b/source/blender/blenlib/intern/BLI_ghash.c
@@ -238,7 +238,7 @@ BLI_INLINE void ghash_insert_ex_keyonly(GHash *gh, void *key,
BLI_INLINE void ghash_insert(GHash *gh, void *key, void *val)
{
const unsigned int hash = ghash_keyhash(gh, key);
- return ghash_insert_ex(gh, key, val, hash);
+ ghash_insert_ex(gh, key, val, hash);
}
/**