]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - stat.c
cleanup
[xonotic/gmqcc.git] / stat.c
diff --git a/stat.c b/stat.c
index 6987cf7b40a2f376f1bc6ac37dfe1ef3c49fe07d..eedb0a41bec5261d0a5d471475e6603caf898e70 100644 (file)
--- a/stat.c
+++ b/stat.c
@@ -402,7 +402,7 @@ typedef struct hash_node_t {
  */
 #if 1
 #define GMQCC_ROTL32(X, R) (((X) << (R)) | ((X) >> (32 - (R))))
-GMQCC_INLINE size_t util_hthash(hash_table_t *ht, const char *key) {
+size_t util_hthash(hash_table_t *ht, const char *key) {
     const unsigned char *data   = (const unsigned char *)key;
     const size_t         len    = strlen(key);
     const size_t         block  = len / 4;