]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - util.c
AUTHORS
[xonotic/gmqcc.git] / util.c
diff --git a/util.c b/util.c
index 136b12a6e92124ee107d1abd379a67f732efdbc3..010de9704da460444ab8030e9220dbe2ce0b4e91 100644 (file)
--- a/util.c
+++ b/util.c
@@ -244,7 +244,7 @@ int util_getline(char **lineptr, size_t *n, FILE *stream) {
     if (!lineptr || !n || !stream)
         return -1;
     if (!*lineptr) {
-        if (!(*lineptr = mem_a((*n = 64))))
+        if (!(*lineptr = mem_a((*n=64))))
             return -1;
     }