translate: squash warnings
authorKeith Whitwell <keith@tungstengraphics.com>
Fri, 25 Apr 2008 14:28:54 +0000 (15:28 +0100)
committerKeith Whitwell <keith@tungstengraphics.com>
Mon, 28 Apr 2008 17:11:55 +0000 (18:11 +0100)
src/gallium/auxiliary/translate/translate_cache.c
src/gallium/auxiliary/translate/translate_cache.h

index e91d648eba4ced861d566284d363993a80d63d8e..115dc9287e05ef4479aec09293b621feabda4094 100644 (file)
@@ -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();
index 63fc57b7ea3956f92c8946d9c87f12de47bcaf3d..7dba871e5793f03e515fa586af9e8ae47ee0ab50 100644 (file)
@@ -38,7 +38,7 @@ struct translate_cache;
 struct translate_key;
 struct translate;
 
-struct translate_cache *translate_cache_create();
+struct translate_cache *translate_cache_create( void );
 void translate_cache_destroy(struct translate_cache *cache);
 
 /**