diff options
author | Keith Whitwell <[email protected]> | 2008-04-25 15:28:54 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-04-28 18:11:55 +0100 |
commit | 546ab045d8a18758ffc44da9dc76ad1335553cf6 (patch) | |
tree | da85768b7affacf81215ca5f0d94fb8ae9eb782e /src/gallium/auxiliary/translate/translate_cache.c | |
parent | a41b78d107264227f3338446e04dcfda32634f52 (diff) |
translate: squash warnings
Diffstat (limited to 'src/gallium/auxiliary/translate/translate_cache.c')
-rw-r--r-- | src/gallium/auxiliary/translate/translate_cache.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/translate/translate_cache.c b/src/gallium/auxiliary/translate/translate_cache.c index e91d648eba4..115dc9287e0 100644 --- a/src/gallium/auxiliary/translate/translate_cache.c +++ b/src/gallium/auxiliary/translate/translate_cache.c @@ -28,6 +28,7 @@ #include "pipe/p_util.h" #include "pipe/p_state.h" #include "translate.h" +#include "translate_cache.h" #include "cso_cache/cso_cache.h" #include "cso_cache/cso_hash.h" @@ -36,7 +37,7 @@ struct translate_cache { struct cso_hash *hash; }; -struct translate_cache * translate_cache_create() +struct translate_cache * translate_cache_create( void ) { struct translate_cache *cache = MALLOC_STRUCT(translate_cache); cache->hash = cso_hash_create(); |