]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - main.c
struct lex_file -> lex_file
[xonotic/gmqcc.git] / main.c
diff --git a/main.c b/main.c
index 006fdea863722c2d5b9c56666eb816c41b976c00..7c4ae875a7e6f662aaad043896927343ceab2a6a 100644 (file)
--- a/main.c
+++ b/main.c
@@ -138,7 +138,7 @@ int main(int argc, char **argv) {
         switch (items_data[itr].type) {
             case 0:
                 fpp = fopen(items_data[itr].name, "r");
-                struct lex_file *lex = lex_open(fpp);
+                lex_file *lex = lex_open(fpp);
                 parse_gen(lex);
                 lex_close(lex);
                 break;