]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - util.c
Major export cleanup. Anything that was exported but wasn't used outside where it...
[xonotic/gmqcc.git] / util.c
diff --git a/util.c b/util.c
index c8d50f5b5fbc15fbff326efbaa45a40f4f734d49..d695ae62f451e2de25f79c029877294cf17c6599 100644 (file)
--- a/util.c
+++ b/util.c
@@ -491,7 +491,7 @@ GMQCC_INLINE size_t util_hthash(hash_table_t *ht, const char *key) {
     return (size_t) (hash % ht->size);
 }
 
-hash_node_t *_util_htnewpair(const char *key, void *value) {
+static hash_node_t *_util_htnewpair(const char *key, void *value) {
     hash_node_t *node;
     if (!(node = (hash_node_t*)mem_a(sizeof(hash_node_t))))
         return NULL;