]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - asm.c
ir_value now checks if a name was specified
[xonotic/gmqcc.git] / asm.c
diff --git a/asm.c b/asm.c
index afb155c58a08f5e0f811440e78007687a5e9390b..c73f25cf7956b4121a6f5e2c6c6088ef8a2991db 100644 (file)
--- a/asm.c
+++ b/asm.c
@@ -44,7 +44,7 @@ VECTOR_MAKE(asm_sym, asm_symbols);
  * Assembly text processing: this handles the internal collection
  * of text to allow parsing and assemblation.
  */
-static char *const asm_getline(size_t *byte, FILE *fp) {
+static char* asm_getline(size_t *byte, FILE *fp) {
     char   *line = NULL;
     size_t  read = util_getline(&line, byte, fp);
     *byte = read;