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>2013-08-18 18:15:51 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-08-18 18:15:51 +0400
commita2541508ac9918ce614b87a88f25993788b3ce3b (patch)
treeb8514bdc58dd9d7e500fcfc3c8d75db0170058e8 /source/blender/blenlib/intern/BLI_ghash.c
parent2fd11a6617b84dbe5cae1a2c3f9145830b2bbfd4 (diff)
Fix a few compiler warnings reported by clang.
Diffstat (limited to 'source/blender/blenlib/intern/BLI_ghash.c')
-rw-r--r--source/blender/blenlib/intern/BLI_ghash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/BLI_ghash.c b/source/blender/blenlib/intern/BLI_ghash.c
index 8221393d4d5..03f5d60079b 100644
--- a/source/blender/blenlib/intern/BLI_ghash.c
+++ b/source/blender/blenlib/intern/BLI_ghash.c
@@ -69,7 +69,7 @@ typedef struct Entry {
void *key, *val;
} Entry;
-typedef struct GHash {
+struct GHash {
GHashHashFP hashfp;
GHashCmpFP cmpfp;
@@ -78,7 +78,7 @@ typedef struct GHash {
unsigned int nbuckets;
unsigned int nentries;
unsigned short cursize, flag;
-} GHash;
+};
/* -------------------------------------------------------------------- */