Add a missing 'static' on internal functions

This commit is contained in:
Ryan Lortie 2010-04-22 15:44:54 -04:00
parent 291a5c9ed9
commit daa1a73c75
2 changed files with 2 additions and 2 deletions

View File

@ -178,7 +178,7 @@ typedef struct
gint n_buckets; gint n_buckets;
} HashTable; } HashTable;
HashTable * static HashTable *
hash_table_new (gint n_buckets) hash_table_new (gint n_buckets)
{ {
HashTable *table; HashTable *table;

View File

@ -241,7 +241,7 @@ gvdb_table_check_name (GvdbTable *file,
return FALSE; return FALSE;
} }
const struct gvdb_hash_item * static const struct gvdb_hash_item *
gvdb_table_lookup (GvdbTable *file, gvdb_table_lookup (GvdbTable *file,
const gchar *key, const gchar *key,
gchar type) gchar type)