]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - util.c
cleanup
[xonotic/gmqcc.git] / util.c
diff --git a/util.c b/util.c
index e9d4cfeb4b55e2263839f1290116885a2a9781ba..de0c77ff64a7d21ad0c12d41fcf52b2471a30246 100644 (file)
--- a/util.c
+++ b/util.c
@@ -499,7 +499,7 @@ uint16_t util_crc16(uint16_t current, const char *GMQCC_RESTRICT k, size_t len)
  * modifier is the match to make and the transposition from it, while add is the upper-value that determines the
  * transposition from uppercase to lower case.
  */
-static GMQCC_INLINE size_t util_strtransform(const char *in, char *out, size_t outsz, const char *mod, int add) {
+static size_t util_strtransform(const char *in, char *out, size_t outsz, const char *mod, int add) {
     size_t sz = 1;
     for (; *in && sz < outsz; ++in, ++out, ++sz) {
         *out = (*in == mod[0])